Skip to content

Commit a5c51d6

Browse files
authored
Merge d630599 into 70d8fa1
2 parents 70d8fa1 + d630599 commit a5c51d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

arduino_logique.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ def main():
2929
win = tk.Tk()
3030
win.title("Laboratoire virtuel de circuit logique - GIF-1002")
3131
win.geometry("1500x800") # Initial window size
32-
win.resizable(False, False) # Disabling window resizing
32+
win.minsize(1500, 800) # Set minimal window size
33+
win.resizable(True, True) # Disabling window resizing
3334
win.configure(bg="#333333") # Setting consistent background color
3435

3536
# Configuring grid layout for the main window

0 commit comments

Comments
 (0)