fix for stuck icons, thanks _markt
This commit is contained in:
parent
b366d9c498
commit
3ee68615c3
1 changed files with 2 additions and 1 deletions
|
@ -910,7 +910,8 @@ void IconbarTool::updateWorkspace() {
|
|||
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue