From 3363d13fa01b78b9e4c48db59d8f32783b225aef Mon Sep 17 00:00:00 2001 From: Jeffry Samuel <69224322+Jeffser@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:03:38 -0600 Subject: [PATCH] changed support dialog frequency --- src/window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.py b/src/window.py index d843bdd..e45bcf7 100644 --- a/src/window.py +++ b/src/window.py @@ -1593,7 +1593,7 @@ Generate a title following these rules: #Support dialog if 'show_support' not in data or data['show_support']: - if random.randint(0, 99) == 0: + if random.randint(0, 49) == 0: dialogs.support(self) if 'show_support' in data: self.show_support = data['show_support'] self.background_switch.set_active(self.run_on_background)