From kde-commits Fri Oct 29 13:00:23 2004 From: =?utf-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Fri, 29 Oct 2004 13:00:23 +0000 To: kde-commits Subject: KDE_3_3_BRANCH: kdebase/kwin Message-Id: <20041029130023.056D916B9E () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=109905483122816 CVS commit by lunakl: Backport #92302 - ignore above hint for fullscreen windows. M +2 -2 layers.cpp 2.30.2.2 --- kdebase/kwin/layers.cpp #2.30.2.1:2.30.2.2 @@ -713,6 +713,4 @@ Layer Client::belongsToLayer() const if( isTopMenu()) return DockLayer; - if( keepAbove()) - return AboveLayer; // only raise fullscreen above docks if it's the topmost window in unconstrained stacking order, // i.e. the window set to be topmost by the user (also includes transients of the fullscreen window) @@ -722,4 +720,6 @@ Layer Client::belongsToLayer() const && ( ac == this || this->hasTransient( ac, true ))) return ActiveLayer; + if( keepAbove()) + return AboveLayer; return NormalLayer; }