summaryrefslogtreecommitdiff
path: root/modules/drawers/Interactions.qml
diff options
context:
space:
mode:
authoroutfoxxed <outfoxxed@outfoxxed.me>2025-06-06 23:26:17 -0700
committeroutfoxxed <outfoxxed@outfoxxed.me>2025-06-06 23:26:17 -0700
commitfc4eff7271e27fac29438cbad8cb865cec7b55a6 (patch)
treeebbd42d1ba820a42063c49ecf598666d5833bb15 /modules/drawers/Interactions.qml
parentpopouts: fix anim when not shown (diff)
downloadcaelestia-shell-fc4eff7271e27fac29438cbad8cb865cec7b55a6.tar.gz
caelestia-shell-fc4eff7271e27fac29438cbad8cb865cec7b55a6.tar.bz2
caelestia-shell-fc4eff7271e27fac29438cbad8cb865cec7b55a6.zip
popouts: fix multimonitor
Diffstat (limited to 'modules/drawers/Interactions.qml')
-rw-r--r--modules/drawers/Interactions.qml8
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/drawers/Interactions.qml b/modules/drawers/Interactions.qml
index e66c24d..3ec522b 100644
--- a/modules/drawers/Interactions.qml
+++ b/modules/drawers/Interactions.qml
@@ -1,5 +1,6 @@
import "root:/services"
import "root:/config"
+import "root:/modules/bar/popouts" as BarPopouts
import "root:/modules/osd" as Osd
import Quickshell
import QtQuick
@@ -8,6 +9,7 @@ MouseArea {
id: root
required property ShellScreen screen
+ required property BarPopouts.Wrapper popouts
required property PersistentProperties visibilities
required property Panels panels
required property Item bar
@@ -38,7 +40,7 @@ MouseArea {
visibilities.osd = false;
osdHovered = false;
visibilities.dashboard = false;
- Popouts.hasCurrent = false;
+ popouts.hasCurrent = false;
}
}
@@ -68,9 +70,9 @@ MouseArea {
bar.checkPopout(y);
else
// Keep on hover
- Popouts.hasCurrent = withinPanelHeight(popout, x, y);
+ popouts.hasCurrent = withinPanelHeight(popout, x, y);
} else
- Popouts.hasCurrent = false;
+ popouts.hasCurrent = false;
}
Osd.Interactions {