Skip to content

Commit e728880

Browse files
committed
Corrected random spaces in code
1 parent e06dcb8 commit e728880

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/auto_tiler.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ export class AutoTiler {
202202
log.debug(`attach to workspace: ${result.value}`)
203203
this.attach_to_workspace(ext, win, ext.workspace_id(win));
204204
} else {
205+
log.debug(`attaching to window ${win.entity}`)
205206
this.attach_to_window(ext, result.value, win, { auto: 0 })
206207
}
207208
}

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ export class Ext extends Ecs.System<ExtEvent> {
789789
this.exception_add(win)
790790
}
791791

792-
// Track history of focused windows, but do not permit duplicates.
792+
// Track history of focused windows, but do not permit duplicates.
793793
if (this.prev_focused[1] !== win.entity) {
794794
this.prev_focused[0] = this.prev_focused[1];
795795
this.prev_focused[1] = win.entity;
@@ -1066,7 +1066,7 @@ export class Ext extends Ecs.System<ExtEvent> {
10661066
this.tiler.snap(this, win);
10671067
}
10681068
}
1069-
1069+
10701070
previously_focused(active: Window.ShellWindow): null | Ecs.Entity {
10711071
for (const id of [1, 0]) {
10721072
const prev = this.prev_focused[id]

0 commit comments

Comments
 (0)