diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-13 16:33:45 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-03-16 09:34:30 -0400 |
| commit | 8faf70c1c2ffd69d51a445fb5599aa9f316a4424 (patch) | |
| tree | 4538196c485b1ccbb40ec64ce74786440b81e9c4 /modules/bar/components/workspaces/ActiveIndicator.qml | |
| parent | update commits (diff) | |
| download | caelestia-shell-8faf70c1c2ffd69d51a445fb5599aa9f316a4424.tar.gz caelestia-shell-8faf70c1c2ffd69d51a445fb5599aa9f316a4424.tar.bz2 caelestia-shell-8faf70c1c2ffd69d51a445fb5599aa9f316a4424.zip | |
revert 'monitorWorkspaces'
Diffstat (limited to 'modules/bar/components/workspaces/ActiveIndicator.qml')
| -rw-r--r-- | modules/bar/components/workspaces/ActiveIndicator.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/bar/components/workspaces/ActiveIndicator.qml b/modules/bar/components/workspaces/ActiveIndicator.qml index 912f771..cd5ce35 100644 --- a/modules/bar/components/workspaces/ActiveIndicator.qml +++ b/modules/bar/components/workspaces/ActiveIndicator.qml @@ -10,10 +10,9 @@ StyledRect { required property int activeWsId required property Repeater workspaces required property Item mask - required property var monitorWorkspaces readonly property int currentWsIdx: { - let wss = monitorWorkspaces; + let wss = Hypr.workspaces.values; for (let i = 0; i < wss.length; i++) { let ws = wss[i]; if (ws.id == activeWsId) |