diff --git a/src/GUI.py b/src/GUI.py index 65e1b93..0be7de7 100644 --- a/src/GUI.py +++ b/src/GUI.py @@ -87,13 +87,6 @@ class GUI: menu.add_cascade(label="Edit", menu=edit_menu) edit_menu.add_command(label="Undo", accelerator="Ctrl+Z", command=lambda: self._undo()) - edit_menu = tk.Menu(menu, tearoff=0) - menu.add_cascade(label="Edit", menu=edit_menu) - edit_menu.add_command(label="Undo", accelerator="Ctrl+Z", command=lambda: self._undo()) - - - - # Frame to hold image imgframe = tk.Frame(root, width=500, height=500, bg="lightgray", relief="sunken", bd=2) imgframe.pack(side="top", pady=10)