diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-15 22:00:47 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-15 22:00:47 +1000 |
| commit | d1ad000a8e5d0dad5fdfedc2558d6a3736a5bd63 (patch) | |
| tree | 68b1f191c154caffa90ead6b68a7e0de8711a7c3 /modules/drawers/Interactions.qml | |
| parent | utilities/record: fix list expand anim (diff) | |
| download | caelestia-shell-d1ad000a8e5d0dad5fdfedc2558d6a3736a5bd63.tar.gz caelestia-shell-d1ad000a8e5d0dad5fdfedc2558d6a3736a5bd63.tar.bz2 caelestia-shell-d1ad000a8e5d0dad5fdfedc2558d6a3736a5bd63.zip | |
internal: fix null warnings
Diffstat (limited to 'modules/drawers/Interactions.qml')
| -rw-r--r-- | modules/drawers/Interactions.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/drawers/Interactions.qml b/modules/drawers/Interactions.qml index 337b0ff..c76ce82 100644 --- a/modules/drawers/Interactions.qml +++ b/modules/drawers/Interactions.qml @@ -74,7 +74,7 @@ CustomMouseArea { if (!utilitiesShortcutActive) visibilities.utilities = false; - if (!popouts.currentName.startsWith("traymenu") || popouts.current.depth <= 1) + if (!popouts.currentName.startsWith("traymenu") || popouts.current?.depth <= 1) popouts.hasCurrent = false; if (Config.bar.showOnHover) |