We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c0381 commit 5506f35Copy full SHA for 5506f35
src/window.ts
@@ -94,6 +94,11 @@ export class ShellWindow {
94
95
this.known_workspace = this.workspace_id()
96
97
+ // Float fullscreen windows by default, such as Kodi.
98
+ if (this.meta.is_fullscreen()) {
99
+ ext.add_tag(entity, Tags.Floating)
100
+ }
101
+
102
if (this.may_decorate()) {
103
if (!window.is_client_decorated()) {
104
if (ext.settings.show_title()) {
@@ -308,7 +313,7 @@ export class ShellWindow {
308
313
// Transient windows are most likely dialogs
309
314
&& !this.is_transient()
310
315
// If a window lacks a class, it's probably a web browser dialog
311
- && wm_class !== null;
316
+ && wm_class !== null
312
317
};
318
319
return !ext.contains_tag(this.entity, Tags.Floating)
0 commit comments