don't follow stuck windows in deiconify (thanks _markt)
This commit is contained in:
parent
309a1aafb3
commit
6d35c17ac0
2 changed files with 5 additions and 1 deletions
|
@ -3,6 +3,9 @@ Changes for 0.9.16:
|
||||||
*06/03/27:
|
*06/03/27:
|
||||||
* Fix crash when deiconifying stuck windows with Follow mode (Simon)
|
* Fix crash when deiconifying stuck windows with Follow mode (Simon)
|
||||||
IconButton.cc
|
IconButton.cc
|
||||||
|
* Don't Follow stuck windows on deiconify, since they're stuck
|
||||||
|
(thanks _markt)
|
||||||
|
IconButton.cc
|
||||||
*06/03/26:
|
*06/03/26:
|
||||||
* Related to external (Simon)
|
* Related to external (Simon)
|
||||||
- Fix title alignment
|
- Fix title alignment
|
||||||
|
|
|
@ -91,7 +91,8 @@ public:
|
||||||
break;
|
break;
|
||||||
case IconbarTool::FOLLOW:
|
case IconbarTool::FOLLOW:
|
||||||
default:
|
default:
|
||||||
win.screen().changeWorkspaceID(win.workspaceNumber());
|
if (!win.isStuck())
|
||||||
|
win.screen().changeWorkspaceID(win.workspaceNumber());
|
||||||
break;
|
break;
|
||||||
};
|
};
|
||||||
win.raiseAndFocus();
|
win.raiseAndFocus();
|
||||||
|
|
Loading…
Reference in a new issue