diff options
author | markt <markt> | 2007-01-05 17:57:07 (GMT) |
---|---|---|
committer | markt <markt> | 2007-01-05 17:57:07 (GMT) |
commit | 416cca0eddb164d6c328588829f6c48d6e4e976d (patch) | |
tree | 4f28341d0eb83273e2f08e9bb94948d7f9c3cee1 /src/FocusControl.cc | |
parent | 8930a711ee101c1a02f579a2ee8ebbe39065c085 (diff) | |
download | fluxbox-416cca0eddb164d6c328588829f6c48d6e4e976d.zip fluxbox-416cca0eddb164d6c328588829f6c48d6e4e976d.tar.bz2 |
don't change focus to a window that doesn't accept focus, see bug #1626114
Diffstat (limited to 'src/FocusControl.cc')
-rw-r--r-- | src/FocusControl.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FocusControl.cc b/src/FocusControl.cc index f363f30..e0bb886 100644 --- a/src/FocusControl.cc +++ b/src/FocusControl.cc | |||
@@ -216,7 +216,8 @@ WinClient *FocusControl::lastFocusedWindow(int workspace) { | |||
216 | for (; it != it_end; ++it) { | 216 | for (; it != it_end; ++it) { |
217 | if ((*it)->fbwindow() && | 217 | if ((*it)->fbwindow() && |
218 | ((((int)(*it)->fbwindow()->workspaceNumber()) == workspace || | 218 | ((((int)(*it)->fbwindow()->workspaceNumber()) == workspace || |
219 | (*it)->fbwindow()->isStuck()) && !(*it)->fbwindow()->isIconic())) | 219 | (*it)->fbwindow()->isStuck()) && (*it)->acceptsFocus() && |
220 | !(*it)->fbwindow()->isIconic())) | ||
220 | return *it; | 221 | return *it; |
221 | } | 222 | } |
222 | return 0; | 223 | return 0; |