Skip to content

Commit cf458d0

Browse files
committed
WindowManager: Integrate with lock screen
1 parent 7d86bf6 commit cf458d0

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/WindowManager.vala

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1117,6 +1117,14 @@ namespace Gala {
11171117
return;
11181118
}
11191119

1120+
if (SessionSettings.is_greeter ()) {
1121+
/* If we are in the greeter only the lock screen group is visible,
1122+
so put everything there. This makes sure stuff like initial setup, keyboard layout overview
1123+
etc. are still visible */
1124+
override_window_group (window, LOCK_SCREEN);
1125+
return;
1126+
}
1127+
11201128
if (NotificationStack.is_notification (window)) {
11211129
override_window_group (window, DESKTOP_SHELL);
11221130
notification_stack.show_notification (actor);

0 commit comments

Comments
 (0)