diff options
author | Jim Ramsay <i.am@jimramsay.com> | 2009-03-09 18:05:41 (GMT) |
---|---|---|
committer | Jim Ramsay <i.am@jimramsay.com> | 2009-03-09 18:05:41 (GMT) |
commit | c1dee4a4055f8f0dafadeca508ff5568e2d0ce08 (patch) | |
tree | a6f1ee4a46855e99ee53063b5593e34ea6011f9e /src | |
parent | 54c1ac8704c2ad81a597547912bdbf5cbf7967d9 (diff) | |
download | fluxbox_pavel-c1dee4a4055f8f0dafadeca508ff5568e2d0ce08.zip fluxbox_pavel-c1dee4a4055f8f0dafadeca508ff5568e2d0ce08.tar.bz2 |
Ignore EnterNotify on workspace change
Changing workspaces also reveals other windows, which causes unexpected focus
changes.
Diffstat (limited to 'src')
-rw-r--r-- | src/Screen.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Screen.cc b/src/Screen.cc index 8b605e7..4d9a65f 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -1098,6 +1098,9 @@ void BScreen::changeWorkspaceID(unsigned int id, bool revert) { | |||
1098 | id == m_current_workspace->workspaceID()) | 1098 | id == m_current_workspace->workspaceID()) |
1099 | return; | 1099 | return; |
1100 | 1100 | ||
1101 | /* Ignore all EnterNotify events until the pointer actually moves */ | ||
1102 | this->focusControl().ignoreAtPointer(); | ||
1103 | |||
1101 | FbTk::App::instance()->sync(false); | 1104 | FbTk::App::instance()->sync(false); |
1102 | 1105 | ||
1103 | FluxboxWindow *focused = FocusControl::focusedFbWindow(); | 1106 | FluxboxWindow *focused = FocusControl::focusedFbWindow(); |