Skip to content

Commit 615768e

Browse files
committed
fix: connectivity check for install mode
Signed-off-by: Brian Ketelsen <bketelsen@gmail.com>
1 parent 5df7b0e commit 615768e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

snow_first_setup/window.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,17 +154,22 @@ def __build_ui(self, configure_system_mode: bool, install_mode: bool, user_mode:
154154
from snow_first_setup.views.install_confirm import VanillaInstallConfirm
155155
from snow_first_setup.views.install_progress import VanillaInstallProgress
156156
from snow_first_setup.views.install_done import VanillaInstallDone
157+
from snow_first_setup.views.conn_check import VanillaConnCheck
158+
157159

158160
self.__view_welcome = VanillaWelcomeInstall(self)
159161
self.__view_welcome.no_next_button = True
160162
self.__view_welcome.no_back_button = True
163+
self.__view_conn_check = VanillaConnCheck(self)
164+
self.__view_conn_check.no_back_button = True
161165
self.__view_language = VanillaLanguage(self)
162166
self.__view_language.no_back_button = True
163167
self.__view_keyboard = VanillaKeyboard(self)
164168
self.__view_installdisk = VanillaInstallDisk(self)
165169
self.__view_installconfirm = VanillaInstallConfirm(self)
166170

167171
self.pages.append(self.__view_welcome)
172+
self.pages.append(self.__view_conn_check)
168173
self.pages.append(self.__view_language)
169174
self.pages.append(self.__view_keyboard)
170175
self.pages.append(self.__view_installdisk)

0 commit comments

Comments
 (0)