We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 70d8fa1 + d630599 commit a5c51d6Copy full SHA for a5c51d6
arduino_logique.py
@@ -29,7 +29,8 @@ def main():
29
win = tk.Tk()
30
win.title("Laboratoire virtuel de circuit logique - GIF-1002")
31
win.geometry("1500x800") # Initial window size
32
- win.resizable(False, False) # Disabling window resizing
+ win.minsize(1500, 800) # Set minimal window size
33
+ win.resizable(True, True) # Disabling window resizing
34
win.configure(bg="#333333") # Setting consistent background color
35
36
# Configuring grid layout for the main window
0 commit comments