summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/shell/quickshell/WorkspaceSwitcher.qml
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2026-03-15 14:48:03 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2026-03-15 14:48:03 +0100
commit9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb (patch)
tree98b53d20d37c50ec218e53988c1f3bec61431c1c /accounts/gkleen@sif/shell/quickshell/WorkspaceSwitcher.qml
parent43d8e0394f38364a2bbecfd05d8ddde3763efdb7 (diff)
downloadnixos-9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb.tar
nixos-9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb.tar.gz
nixos-9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb.tar.bz2
nixos-9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb.tar.xz
nixos-9bc49c3ee4d6f0f05c7356403b94cf690d3ddfdb.zip
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/WorkspaceSwitcher.qml')
-rw-r--r--accounts/gkleen@sif/shell/quickshell/WorkspaceSwitcher.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/WorkspaceSwitcher.qml b/accounts/gkleen@sif/shell/quickshell/WorkspaceSwitcher.qml
index 0dd1bca8..d0595b3d 100644
--- a/accounts/gkleen@sif/shell/quickshell/WorkspaceSwitcher.qml
+++ b/accounts/gkleen@sif/shell/quickshell/WorkspaceSwitcher.qml
@@ -140,7 +140,7 @@ Row {
140 if (a.layout.pos_in_scrolling_layout?.[1] !== b.layout.pos_in_scrolling_layout?.[1]) 140 if (a.layout.pos_in_scrolling_layout?.[1] !== b.layout.pos_in_scrolling_layout?.[1])
141 return a.layout.pos_in_scrolling_layout?.[1] - b.layout.pos_in_scrolling_layout?.[1] 141 return a.layout.pos_in_scrolling_layout?.[1] - b.layout.pos_in_scrolling_layout?.[1]
142 if (a.app_id !== b.app_id) 142 if (a.app_id !== b.app_id)
143 return a.app_id.localeCompare(b.app_id); 143 return a.app_id?.localeCompare(b.app_id);
144 144
145 return a.title.localeCompare(b.title); 145 return a.title.localeCompare(b.title);
146 }); 146 });