From ca23d3ad675c5ec88bbdd35dafd2823822cee6cb Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Mon, 7 Apr 2025 10:07:40 -0700 Subject: [PATCH] Use `Layer::Top` instead of `Layer::Overlay` https://github.com/pop-os/cosmic-workspaces-epoch/issues/66. If we want to hide the workspaces overlay when a popup is opened, that still needs to be done, but using the same layer as the panel should be good in general. There's no clear reason to have it on the `Overlay` layer. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 70414d1..4c0a5e0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -210,7 +210,7 @@ impl App { id, keyboard_interactivity: KeyboardInteractivity::Exclusive, namespace: "cosmic-workspace-overview".into(), - layer: Layer::Overlay, + layer: Layer::Top, size: Some((None, None)), output: IcedOutput::Output(output), anchor: Anchor::all(),