Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions snow_first_setup/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def __build_ui(self, configure_system_mode: bool, install_mode: bool):
from snow_first_setup.views.timezone import VanillaTimezone
from snow_first_setup.views.recovery_key import VanillaRecoveryKey
print("adding recovery key view for OEM mode")
from snow_first_setup.views.conn_check import VanillaConnCheck
from snow_first_setup.views.hostname import VanillaHostname
from snow_first_setup.views.user import VanillaUser
from snow_first_setup.views.core_progress import VanillaCoreProgress
Expand All @@ -114,6 +115,8 @@ def __build_ui(self, configure_system_mode: bool, install_mode: bool):
self.__view_welcome = VanillaWelcome(self)
self.__view_welcome.no_next_button = True
self.__view_welcome.no_back_button = True
self.__view_conn_check = VanillaConnCheck(self)
self.__view_conn_check.no_back_button = True
if self.oem_mode:
self.__view_language = VanillaLanguage(self)
self.__view_language.no_back_button = True
Expand All @@ -133,6 +136,7 @@ def __build_ui(self, configure_system_mode: bool, install_mode: bool):
self.__view_logout.no_next_button = True

self.pages.append(self.__view_welcome)
self.pages.append(self.__view_conn_check)
if self.oem_mode:
self.pages.append(self.__view_language)
self.pages.append(self.__view_keyboard)
Expand Down
Loading