From 5e6f7474b02be6cff95bdd48a4e7ca662a676835 Mon Sep 17 00:00:00 2001 From: BalkisJerad Date: Sun, 22 Mar 2026 08:30:57 +0100 Subject: [PATCH] Retirer les boutons --- simulateur_front.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/simulateur_front.py b/simulateur_front.py index 0208636..d245a37 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)