1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-02 03:28:28 -04:00

fix(NiriService): enhance column movement functions to focus on specified monitor

- Fixes #2498
This commit is contained in:
purian23
2026-07-03 00:14:14 -04:00
parent a73380b310
commit a2513e939a
2 changed files with 18 additions and 4 deletions
+2 -2
View File
@@ -1158,9 +1158,9 @@ PanelWindow {
if (!CompositorService.isNiri)
return false;
if (direction > 0)
NiriService.moveColumnRight();
NiriService.moveColumnRight(barWindow.screenName);
else
NiriService.moveColumnLeft();
NiriService.moveColumnLeft(barWindow.screenName);
return true;
default:
return false;