all repos — fluxbox @ 3ee68615c3a732d42ecdfc3a794209ebdd2331bb

custom fork of the fluxbox windowmanager

fix for stuck icons, thanks _markt
fluxgen fluxgen
commit

3ee68615c3a732d42ecdfc3a794209ebdd2331bb

parent

b366d9c498815a432f8fa96af64e54ee3c6e8849

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

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

@@ -910,7 +910,8 @@ if (mode() != WORKSPACENOICONS) {

BScreen::Icons::iterator icon_it = m_screen.iconList().begin(); BScreen::Icons::iterator icon_it_end = m_screen.iconList().end(); for (; icon_it != icon_it_end; ++icon_it) { - if ((*icon_it)->workspaceNumber() == m_screen.currentWorkspaceID()) + if ((*icon_it)->workspaceNumber() == m_screen.currentWorkspaceID() || + (*icon_it)->isStuck()) itemlist.push_back(*icon_it); } }