A pu les boutons

This commit is contained in:
Nogard 2026-03-22 09:37:37 +01:00
parent f76307ecc1
commit 37bc000a8e

View File

@ -54,16 +54,6 @@ Label(single_inst_frame, text=f"Instruction").pack(pady=5, side=LEFT)
single_instr = Label(single_inst_frame, text=f"instruction+cycle", width=30, bg="white")
single_instr.pack(pady=5, side=tk.LEFT)
# Boutons
buttons_frame = tk.Frame(instructions_frame, width=400, height=100, bg="#89B4E1")
buttons_frame.pack(padx=5, pady=5, side=tk.TOP)
buttonAll = tk.Button(root, text="All In")
buttonStep = tk.Button(root, text="Step By Step")
buttonAll.pack(in_=buttons_frame, side=tk.LEFT)
buttonStep.pack(in_=buttons_frame, side=tk.LEFT)
image_frame = tk.Frame(instructions_frame, width=400, height=100, bg="#89B4E1")
image_frame.pack(padx=5, pady=5, side=tk.TOP)