Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions debian/debhelper-build-stamp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
snow-first-setup
2 changes: 2 additions & 0 deletions debian/snow-first-setup.substvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
misc:Depends=
misc:Pre-Depends=
7 changes: 0 additions & 7 deletions snow_first_setup/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,6 @@ def __build_ui(self, configure_system_mode: bool, install_mode: bool):
from snow_first_setup.views.language import VanillaLanguage
from snow_first_setup.views.keyboard import VanillaKeyboard
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
Expand All @@ -129,9 +127,6 @@ def __build_ui(self, configure_system_mode: bool, install_mode: bool):
self.__view_user = VanillaUser(self)
self.__view_coreprogress = VanillaCoreProgress(self)
self.__view_coreprogress.no_back_button = True
if self.oem_mode:
self.__view_recoverykey = VanillaRecoveryKey(self)
self.__view_recoverykey.no_back_button = True
self.__view_logout = VanillaLogout(self)
self.__view_logout.no_next_button = True

Expand All @@ -143,8 +138,6 @@ def __build_ui(self, configure_system_mode: bool, install_mode: bool):
self.pages.append(self.__view_timezone)
self.pages.append(self.__view_hostname)
self.pages.append(self.__view_user)
if self.oem_mode:
self.pages.append(self.__view_recoverykey)
self.pages.append(self.__view_coreprogress)

self.pages.append(self.__view_logout)
Expand Down
Loading