Don't auto-group transient windows.

svn path=/trunk/KDE/kdebase/workspace/; revision=1078327
This commit is contained in:
Lucas Murray 2010-01-22 03:13:18 +00:00
parent 346bcc30d3
commit f9a5876ac9

View file

@ -2850,6 +2850,10 @@ Client* Workspace::findSimilarClient( Client* c )
return found; return found;
} }
// If this is a transient window don't take a guess
if( c->isTransient() )
return NULL;
// If we don't have an ID take a guess // If we don't have an ID take a guess
if( c->rules()->checkAutogrouping( options->autogroupSimilarWindows )) if( c->rules()->checkAutogrouping( options->autogroupSimilarWindows ))
{ {