aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-09-08 17:52:38 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-09-08 17:52:38 (GMT)
commit39e0bdcbcc37f297e34a7b60623d05739710f870 (patch)
tree0499a73173a4e970bfe2b34c53e5fd7dd91ec0c1
parentb288fc1401c0bbbd3262697833b195d7bef7522b (diff)
downloadfluxbox_pavel-39e0bdcbcc37f297e34a7b60623d05739710f870.zip
fluxbox_pavel-39e0bdcbcc37f297e34a7b60623d05739710f870.tar.bz2
remove unnecessary signals causing toolbar renders on workspace change
-rw-r--r--src/FocusableList.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FocusableList.cc b/src/FocusableList.cc
index 98492b8..094a9b5 100644
--- a/src/FocusableList.cc
+++ b/src/FocusableList.cc
@@ -197,10 +197,10 @@ void FocusableList::addMatching() {
197 Focusables::const_iterator it = list.begin(), it_end = list.end(); 197 Focusables::const_iterator it = list.begin(), it_end = list.end();
198 for (; it != it_end; ++it) { 198 for (; it != it_end; ++it) {
199 if (m_pat->match(**it)) { 199 if (m_pat->match(**it)) {
200 pushBack(**it); 200 m_list.push_back(*it);
201 m_pat->addMatch(); 201 m_pat->addMatch();
202 } else // we still want to watch it, in case it changes to match 202 }
203 attachSignals(**it); 203 attachSignals(**it);
204 } 204 }
205} 205}
206 206