Skip to content

Commit ecde301

Browse files
committed
Updates void multimonitor topbar issues without unfullscreening windows.
1 parent 05ee292 commit ecde301

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tiling.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ export class Space extends Array {
616616
return;
617617
}
618618

619-
if (this.hasFullScreenWindow()) {
619+
if (this.selectedWindow?.fullscreen) {
620620
workArea.y = 0;
621621
}
622622
// compensate to keep window position bar on all monitors
@@ -1462,7 +1462,7 @@ border-radius: ${borderWidth}px;
14621462
}
14631463
};
14641464

1465-
if (this.hasFullScreenWindow()) {
1465+
if (this.selectedWindow?.fullscreen) {
14661466
setVisible(false);
14671467
this.enableWindowPositionBar(false);
14681468
return;

0 commit comments

Comments
 (0)