stop setting keepAbove in destroy methods of Floating and Pinned

This commit is contained in:
Peter Fajdiga
2024-11-05 21:48:35 +01:00
parent 3b919909dc
commit d00d514d30
2 changed files with 0 additions and 6 deletions

View File

@@ -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`

View File

@@ -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();