From 81bdb352aa5a8e3f755dbd0820f0a9fc96e4d632 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 4 Oct 2025 12:27:16 +0200 Subject: [PATCH] overview: fix dragging z index (#2068) --- .config/quickshell/ii/modules/overview/OverviewWidget.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/overview/OverviewWidget.qml b/.config/quickshell/ii/modules/overview/OverviewWidget.qml index 0487c6025..0e850493a 100644 --- a/.config/quickshell/ii/modules/overview/OverviewWidget.qml +++ b/.config/quickshell/ii/modules/overview/OverviewWidget.qml @@ -188,7 +188,7 @@ Item { } } - z: atInitPosition ? (root.windowZ + windowData?.floating) : root.windowDraggingZ + z: Drag.active ? root.windowDraggingZ : (root.windowZ + windowData?.floating) Drag.hotSpot.x: targetWindowWidth / 2 Drag.hotSpot.y: targetWindowHeight / 2 MouseArea {