Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion arduino_logique.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading