From 9694330aa8da6fbcd8c5ecb4d4b1be525e1e1502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Fri, 28 Jun 2013 21:49:24 +0200 Subject: [PATCH] grant minimizability to transient special clients This will not provide a 100% fix, since at least KMainWindow toolbars at some point start to behave like override_redirects BUG: 320921 REVIEW: 111303 FIXED-IN: 4.11 --- client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.cpp b/client.cpp index db6513f09a..2c80a63c2f 100644 --- a/client.cpp +++ b/client.cpp @@ -826,7 +826,7 @@ void Client::hideClient(bool hide) */ bool Client::isMinimizable() const { - if (isSpecialWindow()) + if (isSpecialWindow() && !isTransient()) return false; if (!rules()->checkMinimize(true)) return false;