Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Nov 11, 2024
1 parent 960ebf3 commit 63d3393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public SettingsForm()
buttonDonate.Click += ButtonDonate_Click;

int click = AppConfig.Get("donate_click");
if (AppConfig.Get("start_count") >= ((click <= 0) ? 10 : click + 50))
if (AppConfig.Get("start_count") >= ((click < 10) ? 10 : click + 50))
{
buttonDonate.BorderColor = colorTurbo;
buttonDonate.Badge = true;
Expand Down

0 comments on commit 63d3393

Please sign in to comment.