Skip to content

Commit d59e373

Browse files
authored
fix: tile minimize to tray apps
1 parent 47cf67d commit d59e373

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/window.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,9 +269,8 @@ export class ShellWindow {
269269
wm_class = this.name(ext)
270270
}
271271

272-
return !this.meta.is_skip_taskbar()
273-
// Only normal windows will be considered for tiling
274-
&& this.meta.window_type == Meta.WindowType.NORMAL
272+
// Only normal windows will be considered for tiling
273+
return this.meta.window_type == Meta.WindowType.NORMAL
275274
// Transient windows are most likely dialogs
276275
&& !this.is_transient()
277276
// If a window lacks a class, it's probably a web browser dialog

0 commit comments

Comments
 (0)