Small fixes.
svn path=/trunk/KDE/kdebase/workspace/; revision=527758
This commit is contained in:
parent
e1b40efb22
commit
45c632848a
2 changed files with 3 additions and 3 deletions
|
@ -97,9 +97,9 @@ void Workspace::updateClientLayer( Client* c )
|
|||
|
||||
void Workspace::updateStackingOrder( bool propagate_new_clients )
|
||||
{
|
||||
if( block_stacking_updates > 0 )
|
||||
if( block_stacking_updates > 0 && propagate_new_clients )
|
||||
{
|
||||
blocked_propagating_new_clients |= propagate_new_clients;
|
||||
blocked_propagating_new_clients = true;
|
||||
return;
|
||||
}
|
||||
ClientList new_stacking_order = constrainedStackingOrder();
|
||||
|
|
|
@ -470,7 +470,7 @@ bool Client::performMouseCommand( Options::MouseCommand command, QPoint globalPo
|
|||
cancelShadeHover();
|
||||
break;
|
||||
case Options::MouseOperationsMenu:
|
||||
if ( isActive() & options->clickRaise )
|
||||
if ( isActive() && options->clickRaise )
|
||||
autoRaise();
|
||||
workspace()->showWindowMenu( globalPos, this );
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue