diff options
author | simonb <simonb> | 2006-03-27 06:35:51 (GMT) |
---|---|---|
committer | simonb <simonb> | 2006-03-27 06:35:51 (GMT) |
commit | 6d35c17ac0635f7e9c5bc1eec5e079c58bdbd171 (patch) | |
tree | 1917a3bb2050a80e0bbe9c4b2daedeec37daf812 /src | |
parent | 309a1aafb36ba4c90d9cf4d0c635aed919fb5aa2 (diff) | |
download | fluxbox-6d35c17ac0635f7e9c5bc1eec5e079c58bdbd171.zip fluxbox-6d35c17ac0635f7e9c5bc1eec5e079c58bdbd171.tar.bz2 |
don't follow stuck windows in deiconify (thanks _markt)
Diffstat (limited to 'src')
-rw-r--r-- | src/IconButton.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/IconButton.cc b/src/IconButton.cc index edc2fc1..770944f 100644 --- a/src/IconButton.cc +++ b/src/IconButton.cc | |||
@@ -91,7 +91,8 @@ public: | |||
91 | break; | 91 | break; |
92 | case IconbarTool::FOLLOW: | 92 | case IconbarTool::FOLLOW: |
93 | default: | 93 | default: |
94 | win.screen().changeWorkspaceID(win.workspaceNumber()); | 94 | if (!win.isStuck()) |
95 | win.screen().changeWorkspaceID(win.workspaceNumber()); | ||
95 | break; | 96 | break; |
96 | }; | 97 | }; |
97 | win.raiseAndFocus(); | 98 | win.raiseAndFocus(); |