diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-27 21:37:15 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-27 21:37:15 +1000 |
| commit | b264ae9888575df22e15d89a361845f84202106a (patch) | |
| tree | 4b3d85117265f35b2ddda0fd00e3643b3b16d27c /modules/areapicker | |
| parent | icons: fix grade more icons (diff) | |
| download | caelestia-shell-b264ae9888575df22e15d89a361845f84202106a.tar.gz caelestia-shell-b264ae9888575df22e15d89a361845f84202106a.tar.bz2 caelestia-shell-b264ae9888575df22e15d89a361845f84202106a.zip | |
internal: use hyprlandtoplevel
Diffstat (limited to 'modules/areapicker')
| -rw-r--r-- | modules/areapicker/Picker.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/areapicker/Picker.qml b/modules/areapicker/Picker.qml index 31aec02..f3a7eb0 100644 --- a/modules/areapicker/Picker.qml +++ b/modules/areapicker/Picker.qml @@ -36,7 +36,7 @@ MouseArea { property real sw: Math.abs(sx - ex) property real sh: Math.abs(sy - ey) - property list<var> clients: Hyprland.clients.filter(c => c.workspace.id === Hyprland.activeWsId) + property list<var> clients: Hyprland.toplevels.values.filter(c => c.workspace.id === Hyprland.activeWsId) function checkClientRects(x: real, y: real): void { for (const c of clients) { |