Skip to content

Commit 9543a73

Browse files
committed
Fix active workspace class in indicator workspace overview
Resolves #48
1 parent b675e2c commit 9543a73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

[email protected]/IndicatorWsmatrixPopup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class IndicatorWsmatrixPopup extends BaseWorkspaceSwitcherPopup {
115115
}
116116
if (i === this._activeWorkspaceIndex && (this._direction == Meta.MotionDirection.UP || this._direction == Meta.MotionDirection.LEFT)) {
117117
indicators[i].style_class = 'wsmatrix ws-switcher-active-up';
118-
} else if (i === this._activeWorkspaceIndex && (this._direction == Meta.MotionDirection.DOWN || this._direction == Meta.MotionDirection.RIGHT)) {
118+
} else if (i === this._activeWorkspaceIndex) {
119119
indicators[i].style_class = 'wsmatrix ws-switcher-active-down';
120120
}
121121
}

0 commit comments

Comments
 (0)