fix tabbing ./. utility hiding
BUG: 225500 REVIEW: 102699
This commit is contained in:
parent
51ef7518dd
commit
8c668e6126
1 changed files with 3 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue