Version: (using KDE KDE 3.5.2) Installed from: SuSE RPMs Currently, when the window is shaded and I switch to it, it is auto-unshaded. I would like to unshade it manually -- please add appropriate option for that. I mean to enable-disable automatic unshading.
SVN commit 534186 by lunakl: Obey automatic un-hover option also when switching to a shaded window with alt+tab. BUG: 126291 M +3 -3 tabbox.cpp --- branches/KDE/3.5/kdebase/kwin/tabbox.cpp #534185:534186 @@ -976,7 +976,7 @@ if ( options->focusPolicyIsReasonable() ) { activateClient( nc ); - if( nc->isShade()) + if( nc->isShade() && options->shadeHover ) nc->setShade( ShadeActivated ); } else @@ -996,7 +996,7 @@ if( Client* c = tab_box->currentClient() ) { activateClient( c ); - if( c->isShade()) + if( c->isShade() && options->shadeHover ) c->setShade( ShadeActivated ); } } @@ -1120,7 +1120,7 @@ if( Client* c = tab_box->currentClient()) { activateClient( c ); - if( c->isShade()) + if( c->isShade() && options->shadeHover ) c->setShade( ShadeActivated ); } }
You need to log in before you can comment on or make changes to this bug.