Skip to content

Commit dcb3f59

Browse files
authored
Merge pull request #20 from frostyard/connectivity
fix: connectivity check in configure mode
2 parents b4545d9 + d9a0fd1 commit dcb3f59

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

snow_first_setup/window.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ def __build_ui(self, configure_system_mode: bool, install_mode: bool):
105105
from snow_first_setup.views.timezone import VanillaTimezone
106106
from snow_first_setup.views.recovery_key import VanillaRecoveryKey
107107
print("adding recovery key view for OEM mode")
108+
from snow_first_setup.views.conn_check import VanillaConnCheck
108109
from snow_first_setup.views.hostname import VanillaHostname
109110
from snow_first_setup.views.user import VanillaUser
110111
from snow_first_setup.views.core_progress import VanillaCoreProgress
@@ -114,6 +115,8 @@ def __build_ui(self, configure_system_mode: bool, install_mode: bool):
114115
self.__view_welcome = VanillaWelcome(self)
115116
self.__view_welcome.no_next_button = True
116117
self.__view_welcome.no_back_button = True
118+
self.__view_conn_check = VanillaConnCheck(self)
119+
self.__view_conn_check.no_back_button = True
117120
if self.oem_mode:
118121
self.__view_language = VanillaLanguage(self)
119122
self.__view_language.no_back_button = True
@@ -133,6 +136,7 @@ def __build_ui(self, configure_system_mode: bool, install_mode: bool):
133136
self.__view_logout.no_next_button = True
134137

135138
self.pages.append(self.__view_welcome)
139+
self.pages.append(self.__view_conn_check)
136140
if self.oem_mode:
137141
self.pages.append(self.__view_language)
138142
self.pages.append(self.__view_keyboard)

0 commit comments

Comments
 (0)