if a transient has a main window that is on all desktops, make the transient too
svn path=/trunk/KDE/kdebase/workspace/; revision=1165451
This commit is contained in:
parent
07603785a7
commit
2d01df9e04
1 changed files with 6 additions and 1 deletions
|
@ -165,6 +165,7 @@ bool Client::manage( Window w, bool isMapped )
|
|||
{
|
||||
ClientList mainclients = mainClients();
|
||||
bool on_current = false;
|
||||
bool on_all = false;
|
||||
Client* maincl = NULL;
|
||||
// This is slightly duplicated from Placement::placeOnMainWindow()
|
||||
for( ClientList::ConstIterator it = mainclients.constBegin();
|
||||
|
@ -176,8 +177,12 @@ bool Client::manage( Window w, bool isMapped )
|
|||
maincl = *it;
|
||||
if( (*it)->isOnCurrentDesktop() )
|
||||
on_current = true;
|
||||
if( (*it)->isOnAllDesktops() )
|
||||
on_all = true;
|
||||
}
|
||||
if( on_current )
|
||||
if( on_all )
|
||||
desk = NET::OnAllDesktops;
|
||||
else if( on_current )
|
||||
desk = workspace()->currentDesktop();
|
||||
else if( maincl != NULL )
|
||||
desk = maincl->desktop();
|
||||
|
|
Loading…
Reference in a new issue