From 12ecab6ff3c47711bfc3dba95e503095ee463b6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Mon, 7 Jun 2004 14:58:48 +0000 Subject: [PATCH] Always allow minimizing of a window if its mainwindow is minimized. Fixes #81141. svn path=/trunk/kdebase/kwin/; revision=318491 --- client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.cpp b/client.cpp index 053502ab9a..de1bc5c6fc 100644 --- a/client.cpp +++ b/client.cpp @@ -490,7 +490,7 @@ bool Client::isMinimizable() const { if( isSpecialWindow() && !isOverride()) return false; - if( isTransient() && !wantsTabFocus()) + if( isTransient()) { // #66868 - let other xmms windows be minimized when the mainwindow is minimized bool shown_mainwindow = false; ClientList mainclients = mainClients();