Fix call to removed function in DesktopProfile class (#2596)
* Update Spanish translation for 'greeter' * Moved the os.execve call below the debug logging statement in SysCommandWorker * Fix call to removed function in DesktopProfile class
This commit is contained in:
parent
a5fd20595d
commit
74ba8fb3b4
|
|
@ -62,7 +62,7 @@ class DesktopProfile(Profile):
|
||||||
|
|
||||||
match choice.type_:
|
match choice.type_:
|
||||||
case menu.MenuSelectionType.Selection:
|
case menu.MenuSelectionType.Selection:
|
||||||
self.set_current_selection(choice.value) # type: ignore
|
self.current_selection = choice.value # type: ignore
|
||||||
self._do_on_select_profiles()
|
self._do_on_select_profiles()
|
||||||
return SelectResult.NewSelection
|
return SelectResult.NewSelection
|
||||||
case menu.MenuSelectionType.Skip:
|
case menu.MenuSelectionType.Skip:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue