all repos — fluxbox @ 39e0bdcbcc37f297e34a7b60623d05739710f870

custom fork of the fluxbox windowmanager

remove unnecessary signals causing toolbar renders on workspace change
Mark Tiefenbruck mark@fluxbox.org
commit

39e0bdcbcc37f297e34a7b60623d05739710f870

parent

b288fc1401c0bbbd3262697833b195d7bef7522b

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M src/FocusableList.ccsrc/FocusableList.cc

@@ -197,10 +197,10 @@ const Focusables list = m_parent->clientList();

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