fix tabbing ./. utility hiding

BUG: 225500
REVIEW: 102699
icc-effect-5.14.5
Thomas Lübking 2011-09-25 17:52:05 +02:00
parent 51ef7518dd
commit 8c668e6126
1 changed files with 3 additions and 4 deletions

View File

@ -809,10 +809,9 @@ void Workspace::updateToolWindows(bool also_hide)
{
// TODO: What if Client's transiency/group changes? should this be called too? (I'm paranoid, am I not?)
if (!options->hideUtilityWindowsForInactive) {
for (ClientList::ConstIterator it = clients.constBegin();
it != clients.constEnd();
++it)
(*it)->hideClient(false);
for (ClientList::ConstIterator it = clients.constBegin(); it != clients.constEnd(); ++it)
if (!(*it)->clientGroup() || (*it)->clientGroup()->visible() == *it)
(*it)->hideClient(false);
return;
}
const Group* group = NULL;