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,9 +197,9 @@ void FocusableList::addMatching() {
|
||||||
Focusables::const_iterator it = list.begin(), it_end = list.end();
|
Focusables::const_iterator it = list.begin(), it_end = list.end();
|
||||||
for (; it != it_end; ++it) {
|
for (; it != it_end; ++it) {
|
||||||
if (m_pat->match(**it)) {
|
if (m_pat->match(**it)) {
|
||||||
pushBack(**it);
|
m_list.push_back(*it);
|
||||||
m_pat->addMatch();
|
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