Prevent modal dialogs to be shown twice in alt+tab list.
BUG: 230807 CCBUG: 228186 svn path=/trunk/KDE/kdebase/workspace/; revision=1105473
This commit is contained in:
parent
7277ec7450
commit
471bd26634
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ TabBoxClient* TabBoxHandlerImpl::clientToAddToList( TabBoxClient* client, int de
|
|||
Client* modal = current->findModal();
|
||||
if( modal == NULL || modal == current )
|
||||
ret = current;
|
||||
else if( clientList().contains( modal->tabBoxClient() ) )
|
||||
else if( !clientList().contains( modal->tabBoxClient() ) )
|
||||
ret = modal;
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue