remove unnecessary signals causing toolbar renders on workspace change

This commit is contained in:
Mark Tiefenbruck 2008-09-08 13:52:38 -04:00
parent b288fc1401
commit 39e0bdcbcc

View file

@ -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);
} }
} }