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; }