From fecd71ef460b1cba797fd513e96755e13a28aca4 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Wed, 17 May 2023 16:07:14 -0600 Subject: [PATCH] GUI: Reset update stage on main menu --- resources/wx_gui/gui_main_menu.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/wx_gui/gui_main_menu.py b/resources/wx_gui/gui_main_menu.py index 23c6e663d..2e375ba78 100644 --- a/resources/wx_gui/gui_main_menu.py +++ b/resources/wx_gui/gui_main_menu.py @@ -32,6 +32,8 @@ class MainFrame(wx.Frame): self.model_label: wx.StaticText = None self.build_button: wx.Button = None + self.constants.update_stage = gui_support.AutoUpdateStages.INACTIVE + self._generate_elements() self.SetPosition(screen_location) if screen_location else self.Centre()