From 9f882d9f3c3ebc483675a3f6ee0670c8b70e279d Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 27 Mar 2026 08:58:38 +0100 Subject: [PATCH] overview: ensure fullscreen windows are in front of others --- .../quickshell/ii/modules/ii/overview/OverviewWidget.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/ii/overview/OverviewWidget.qml b/dots/.config/quickshell/ii/modules/ii/overview/OverviewWidget.qml index 96d72d9d1..4fa2bef67 100644 --- a/dots/.config/quickshell/ii/modules/ii/overview/OverviewWidget.qml +++ b/dots/.config/quickshell/ii/modules/ii/overview/OverviewWidget.qml @@ -240,7 +240,7 @@ Item { } } - z: Drag.active ? root.windowDraggingZ : (root.windowZ + windowData?.floating) + z: Drag.active ? root.windowDraggingZ : (root.windowZ + windowData?.floating + windowData?.fullscreen * 2) Drag.hotSpot.x: width / 2 Drag.hotSpot.y: height / 2 MouseArea {