From bcd9d00a47c746f302c96ed9c6cdc75b84dbe5f7 Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Sun, 20 Mar 2022 10:19:10 +0100 Subject: [PATCH] fix an issue where updating the menu bar multiple times would actually just add to it --- gui_handler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui_handler.py b/gui_handler.py index 9ef2cb5..b14616d 100644 --- a/gui_handler.py +++ b/gui_handler.py @@ -30,6 +30,7 @@ class Window(QtWidgets.QMainWindow): # if not a sub menu if menu == None: menu = self.menuBar() + menu.clear() #Looping through entire menu_dict for entry in menu_dict: