From d630599196578e00933d7ada74eb3493fbbc4d5e Mon Sep 17 00:00:00 2001 From: abbou169 Date: Sun, 8 Dec 2024 12:31:56 -0500 Subject: [PATCH] min size and full screen --- arduino_logique.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arduino_logique.py b/arduino_logique.py index 957ff94..3b933a1 100644 --- a/arduino_logique.py +++ b/arduino_logique.py @@ -29,7 +29,8 @@ def main(): win = tk.Tk() win.title("Laboratoire virtuel de circuit logique - GIF-1002") win.geometry("1500x800") # Initial window size - win.resizable(False, False) # Disabling window resizing + win.minsize(1500, 800) # Set minimal window size + win.resizable(True, True) # Disabling window resizing win.configure(bg="#333333") # Setting consistent background color # Configuring grid layout for the main window