diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/IconbarTool.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/IconbarTool.cc b/src/IconbarTool.cc index cbd42c4..3c219e7 100644 --- a/src/IconbarTool.cc +++ b/src/IconbarTool.cc | |||
@@ -910,7 +910,8 @@ void IconbarTool::updateWorkspace() { | |||
910 | BScreen::Icons::iterator icon_it = m_screen.iconList().begin(); | 910 | BScreen::Icons::iterator icon_it = m_screen.iconList().begin(); |
911 | BScreen::Icons::iterator icon_it_end = m_screen.iconList().end(); | 911 | BScreen::Icons::iterator icon_it_end = m_screen.iconList().end(); |
912 | for (; icon_it != icon_it_end; ++icon_it) { | 912 | for (; icon_it != icon_it_end; ++icon_it) { |
913 | if ((*icon_it)->workspaceNumber() == m_screen.currentWorkspaceID()) | 913 | if ((*icon_it)->workspaceNumber() == m_screen.currentWorkspaceID() || |
914 | (*icon_it)->isStuck()) | ||
914 | itemlist.push_back(*icon_it); | 915 | itemlist.push_back(*icon_it); |
915 | } | 916 | } |
916 | } | 917 | } |