diff --git a/src/lib/world/clientState/Floating.ts b/src/lib/world/clientState/Floating.ts index 7499d48..c216150 100644 --- a/src/lib/world/clientState/Floating.ts +++ b/src/lib/world/clientState/Floating.ts @@ -18,9 +18,6 @@ namespace ClientState { public destroy(passFocus: boolean) { this.signalManager.destroy(); - if (this.config.floatingKeepAbove) { - this.client.kwinClient.keepAbove = false; - } } // TODO: move to `Tiled.restoreClientAfterTiling` diff --git a/src/lib/world/clientState/Pinned.ts b/src/lib/world/clientState/Pinned.ts index 1fbbd57..4850a3a 100644 --- a/src/lib/world/clientState/Pinned.ts +++ b/src/lib/world/clientState/Pinned.ts @@ -19,9 +19,6 @@ namespace ClientState { public destroy(passFocus: boolean) { this.signalManager.destroy(); - if (this.config.floatingKeepAbove) { - this.kwinClient.keepAbove = true; - } this.pinManager.removeClient(this.kwinClient); for (const desktop of this.desktopManager.getDesktopsForClient(this.kwinClient)) { desktop.onPinsChanged();