diff --git a/simulateur_front.py b/simulateur_front.py index 2d15818..dfc97b4 100644 --- a/simulateur_front.py +++ b/simulateur_front.py @@ -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)