diff --git a/unite@hardpixel.eu/window.js b/unite@hardpixel.eu/window.js index 7901132..a579360 100644 --- a/unite@hardpixel.eu/window.js +++ b/unite@hardpixel.eu/window.js @@ -148,7 +148,15 @@ const MetaWindow = GObject.registerClass( } get clientDecorated() { - return this.win.is_client_decorated() + if (this.win.is_client_decorated) { + return this.win.is_client_decorated() + } + + if (this.win.get_client_type() == Meta.WindowClientType.WAYLAND) { + return true + } + + return false } get primaryScreen() {