From 428854f25a0afc6589debb2ccdd634ea18252b11 Mon Sep 17 00:00:00 2001 From: punix Date: Sun, 22 Sep 2024 20:15:05 +0200 Subject: [PATCH] fix scrollbar view with set self.y_height = 330 to self.y_height = 340 --- wg_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wg_main.py b/wg_main.py index 8f4160a..253e82b 100755 --- a/wg_main.py +++ b/wg_main.py @@ -19,7 +19,7 @@ class MainWindow(tk.Tk): self.switch_on = None self.switch_off = None self.x_width = 600 - self.y_height = 330 + self.y_height = 340 self.monitor_center_x = self.winfo_screenwidth() / 2 - (self.x_width / 2) self.monitor_center_y = self.winfo_screenheight() / 2 - (self.y_height / 2) self.resizable(width=False, height=False)