all repos — fluxbox @ b3a2564ffd946adcc5f5baabef36ba0c5fd99ea9

custom fork of the fluxbox windowmanager

clientlist notify when window changes workspace
fluxgen fluxgen
commit

b3a2564ffd946adcc5f5baabef36ba0c5fd99ea9

parent

9b131e7a6555d60a9b8de5c0aa55c3f4de793ed9

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

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

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Screen.cc,v 1.262 2004/01/19 18:29:43 fluxgen Exp $ +// $Id: Screen.cc,v 1.263 2004/01/19 22:07:24 fluxgen Exp $ #include "Screen.hh"

@@ -1468,9 +1468,17 @@

if (w->isIconic()) { removeIcon(w); getWorkspace(wkspc_id)->addWindow(*w); + // client list need to notify now even though + // we didn't remove/add any window, + // so listeners that uses the client list to + // show whats on current/other workspace + // gets updated + m_clientlist_sig.notify(); } else if (ignore_sticky || ! w->isStuck()) { getWorkspace(w->workspaceNumber())->removeWindow(w); getWorkspace(wkspc_id)->addWindow(*w); + // see comment above + m_clientlist_sig.notify(); } }