File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ export class Tiler {
72
72
toggle_stacking ( ext : Ext ) {
73
73
ext . auto_tiler ?. toggle_stacking ( ext ) ;
74
74
const win = ext . focus_window ( ) ;
75
- if ( win ) this . overlay_watch ( ext , win ) ;
75
+ if ( win && ! win . meta . is_fullscreen ( ) ) this . overlay_watch ( ext , win ) ;
76
76
}
77
77
78
78
rect ( ext : Ext , monitor : Rectangle ) : Rectangle | null {
@@ -194,7 +194,7 @@ export class Tiler {
194
194
if ( this . queue . length === 2 ) return ;
195
195
this . queue . send ( ( ) => {
196
196
const focused = ext . focus_window ( ) ;
197
- if ( focused ) {
197
+ if ( focused && ! focused . meta . is_fullscreen ( ) ) {
198
198
// The window that the focused window is being moved onto
199
199
const move_to = focus ( ) ;
200
200
@@ -700,6 +700,7 @@ export class Tiler {
700
700
if ( ! this . window ) {
701
701
const win = ext . focus_window ( ) ;
702
702
if ( ! win ) return ;
703
+ if ( win && win . meta . is_fullscreen ( ) ) return ;
703
704
704
705
this . window = win . entity ;
705
706
You can’t perform that action at this time.
0 commit comments