Skip to content

Commit 3a6006a

Browse files
committed
ShellClientsManager: Integrate with lock screen
1 parent 5759717 commit 3a6006a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/ShellClients/ShellClientsManager.vala

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,11 @@ public class Gala.ShellClientsManager : Object, GestureTarget {
193193

194194
panel_windows[window] = new PanelWindow (wm, window, anchor);
195195

196-
wm.override_window_group (window, DESKTOP_SHELL);
196+
if (SessionSettings.is_greeter ()) {
197+
wm.override_window_group (window, LOCK_SCREEN_SHELL);
198+
} else {
199+
wm.override_window_group (window, DESKTOP_SHELL);
200+
}
197201

198202
InternalUtils.wait_for_window_actor_visible (window, on_panel_ready);
199203

0 commit comments

Comments
 (0)