fix scrollbar view with set self.y_height = 330 to self.y_height = 340

This commit is contained in:
Désiré Werner Menrath 2024-09-22 20:15:05 +02:00
parent 63b9c7935b
commit 428854f25a

View File

@ -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)