diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Ewmh.cc | 3 | ||||
-rw-r--r-- | src/Workspace.cc | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/Ewmh.cc b/src/Ewmh.cc index 96ba209..97c66b8 100644 --- a/src/Ewmh.cc +++ b/src/Ewmh.cc | |||
@@ -773,7 +773,8 @@ bool Ewmh::checkClientMessage(const XClientMessageEvent &ce, | |||
773 | // if the raised window is on a different workspace | 773 | // if the raised window is on a different workspace |
774 | // we do what the user wish: | 774 | // we do what the user wish: |
775 | // either ignore|go to that workspace|get the window | 775 | // either ignore|go to that workspace|get the window |
776 | if (fbwin->screen().currentWorkspaceID() != fbwin->workspaceNumber()) { | 776 | if (fbwin->screen().currentWorkspaceID() != fbwin->workspaceNumber() |
777 | && !fbwin->isStuck()) { | ||
777 | BScreen::FollowModel model = (ce.data.l[0] == 2) ? | 778 | BScreen::FollowModel model = (ce.data.l[0] == 2) ? |
778 | fbwin->screen().getUserFollowModel() : | 779 | fbwin->screen().getUserFollowModel() : |
779 | fbwin->screen().getFollowModel(); | 780 | fbwin->screen().getFollowModel(); |
diff --git a/src/Workspace.cc b/src/Workspace.cc index 2ee2768..83db8ef 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc | |||
@@ -104,7 +104,8 @@ public: | |||
104 | return; | 104 | return; |
105 | FluxboxWindow &win = *m_client.fbwindow(); | 105 | FluxboxWindow &win = *m_client.fbwindow(); |
106 | 106 | ||
107 | if (win.screen().currentWorkspaceID() != win.workspaceNumber()) { | 107 | if (win.screen().currentWorkspaceID() != win.workspaceNumber() && |
108 | !win.isStuck()) { | ||
108 | win.menu().hide(); | 109 | win.menu().hide(); |
109 | BScreen::FollowModel model = win.screen().getUserFollowModel(); | 110 | BScreen::FollowModel model = win.screen().getUserFollowModel(); |
110 | if (model == BScreen::IGNORE_OTHER_WORKSPACES) | 111 | if (model == BScreen::IGNORE_OTHER_WORKSPACES) |