From 3856909aabbcd9b5b926334f61bac44024dc3fba Mon Sep 17 00:00:00 2001 From: Hugo Pereira Da Costa Date: Mon, 28 Sep 2009 05:04:23 +0000 Subject: [PATCH] fixed bug with shaded|maximized window and sizeGrip (reported on kde-look) svn path=/trunk/KDE/kdebase/workspace/; revision=1028753 --- clients/oxygen/oxygenclient.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/clients/oxygen/oxygenclient.cpp b/clients/oxygen/oxygenclient.cpp index 4cb6956c14..820b76aa94 100644 --- a/clients/oxygen/oxygenclient.cpp +++ b/clients/oxygen/oxygenclient.cpp @@ -594,7 +594,9 @@ namespace Oxygen { // update size grip so that it gets the right color - if( hasSizeGrip() ) + // also make sure it is remaped to from z stack, + // unless hidden + if( hasSizeGrip() && !(isShade() || isMaximized() )) { sizeGrip().activeChange(); sizeGrip().update();