From f9ae299ce87bdb70efc88b0f9c52ec3813bc1f5f Mon Sep 17 00:00:00 2001 From: Peter Fajdiga Date: Sat, 30 Mar 2024 12:45:28 +0100 Subject: [PATCH] Tiled: restore opacity after un-tiling --- src/world/clientState/Tiled.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/world/clientState/Tiled.ts b/src/world/clientState/Tiled.ts index 7a9e26a..7332a9e 100644 --- a/src/world/clientState/Tiled.ts +++ b/src/world/clientState/Tiled.ts @@ -174,6 +174,9 @@ namespace ClientState { if (config.tiledKeepBelow) { client.kwinClient.keepBelow = false; } + if (config.offScreenOpacity < 1.0) { + client.kwinClient.opacity = 1.0; + } client.setShade(false); client.setFullScreen(false); if (client.kwinClient.tile === null) {