CT: erase crash in tabbox thanks to Malte Starostik
svn path=/trunk/kdebase/kwin/; revision=39262
This commit is contained in:
parent
133bce84f6
commit
dc7f396179
1 changed files with 3 additions and 3 deletions
|
@ -94,9 +94,9 @@ void TabBox::nextPrev( bool next)
|
||||||
else
|
else
|
||||||
client = workspace()->previousClient(client);
|
client = workspace()->previousClient(client);
|
||||||
} while (client != sign && client &&
|
} while (client != sign && client &&
|
||||||
( !options_traverse_all && !client->isOnDesktop(workspace()->currentDesktop()) )
|
(( !options_traverse_all &&
|
||||||
||
|
!client->isOnDesktop(workspace()->currentDesktop()) ) ||
|
||||||
( client->isIconified() && client->mainClient() != client )
|
( client->isIconified() && client->mainClient() != client ))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue