pull/36039/head
Shane Smiskol 2 weeks ago
parent 95c7b651d7
commit e1b7e0d329
  1. 3
      system/ui/setup.py
  2. 3
      system/ui/updater.py

@ -72,8 +72,7 @@ class Setup(Widget):
self.download_url = "" self.download_url = ""
self.download_progress = 0 self.download_progress = 0
self.download_thread = None self.download_thread = None
self.wifi_manager = WifiManager() self.wifi_ui = WifiManagerUI(WifiManager())
self.wifi_ui = WifiManagerUI(self.wifi_manager)
self.keyboard = Keyboard() self.keyboard = Keyboard()
self.selected_radio = None self.selected_radio = None
self.warning = gui_app.texture("icons/warning.png", 150, 150) self.warning = gui_app.texture("icons/warning.png", 150, 150)

@ -43,8 +43,7 @@ class Updater(Widget):
self.show_reboot_button = False self.show_reboot_button = False
self.process = None self.process = None
self.update_thread = None self.update_thread = None
self.wifi_manager = WifiManager() self.wifi_manager_ui = WifiManagerUI(WifiManager())
self.wifi_manager_ui = WifiManagerUI(self.wifi_manager)
def install_update(self): def install_update(self):
self.current_screen = Screen.PROGRESS self.current_screen = Screen.PROGRESS

Loading…
Cancel
Save