remove unnecessary signals causing toolbar renders on workspace change
This commit is contained in:
parent
b288fc1401
commit
39e0bdcbcc
1 changed files with 3 additions and 3 deletions
|
@ -197,10 +197,10 @@ void FocusableList::addMatching() {
|
|||
Focusables::const_iterator it = list.begin(), it_end = list.end();
|
||||
for (; it != it_end; ++it) {
|
||||
if (m_pat->match(**it)) {
|
||||
pushBack(**it);
|
||||
m_list.push_back(*it);
|
||||
m_pat->addMatch();
|
||||
} else // we still want to watch it, in case it changes to match
|
||||
attachSignals(**it);
|
||||
}
|
||||
attachSignals(**it);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue