mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Cleanup
This commit is contained in:
@@ -273,7 +273,8 @@ namespace GHelper
|
||||
|
||||
buttonDonate.Click += ButtonDonate_Click;
|
||||
|
||||
if (AppConfig.Get("start_count") > 10 && !AppConfig.Is("donate_click"))
|
||||
int click = AppConfig.Get("donate_click");
|
||||
if (AppConfig.Get("start_count") >= ((click <= 0) ? 10 : click + 50))
|
||||
{
|
||||
buttonDonate.BorderColor = colorTurbo;
|
||||
buttonDonate.Badge = true;
|
||||
@@ -293,7 +294,7 @@ namespace GHelper
|
||||
|
||||
private void ButtonDonate_Click(object? sender, EventArgs e)
|
||||
{
|
||||
AppConfig.Set("donate_click", 1);
|
||||
AppConfig.Set("donate_click", AppConfig.Get("start_count"));
|
||||
buttonDonate.Badge = false;
|
||||
Process.Start(new ProcessStartInfo("https://g-helper.com/support") { UseShellExecute = true });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user