File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1012,7 +1012,7 @@ export class Ext extends Ecs.System<ExtEvent> {
1012
1012
work = win . meta . get_workspace ( ) . index ( )
1013
1013
}
1014
1014
1015
- for ( const [ _entity , compare ] of this . windows . iter ( ) ) {
1015
+ for ( const [ , compare ] of this . windows . iter ( ) ) {
1016
1016
const is_same_space = compare . meta . get_monitor ( ) === mon
1017
1017
&& compare . meta . get_workspace ( ) . index ( ) === work ;
1018
1018
if ( is_same_space && ! this . contains_tag ( compare . entity , Tags . Floating ) ) {
@@ -1310,7 +1310,7 @@ export class Ext extends Ecs.System<ExtEvent> {
1310
1310
1311
1311
const index = ws . index ( )
1312
1312
const coord : [ number , number ] = [ src . x , src . y ]
1313
-
1313
+
1314
1314
let nearest_window = null
1315
1315
let nearest_distance = null
1316
1316
@@ -1339,7 +1339,7 @@ export class Ext extends Ecs.System<ExtEvent> {
1339
1339
const monitor = win . meta . get_monitor ( ) ;
1340
1340
if ( this . auto_tiler && win . is_tilable ( this ) ) {
1341
1341
win . ignore_detach = true ;
1342
-
1342
+
1343
1343
place_on_nearest_window ( this . auto_tiler , neighbor , monitor )
1344
1344
1345
1345
if ( win . meta . minimized ) {
You can’t perform that action at this time.
0 commit comments