diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-07-30 07:17:07 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-07-30 07:17:07 +0000 |
| commit | a7515b6d85b9cdb97d2365559109af74e68f6ff8 (patch) | |
| tree | ff05c4a2f8dcf0bf1c9573da011537819c57a08a /src/Window.cc | |
| parent | 961d7eb5b388e284c697b4ab0fc96ce52f90ff0a (diff) | |
don't focus non-visible windows
Diffstat (limited to 'src/Window.cc')
| -rw-r--r-- | src/Window.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc index 1c49346c..cd8716e0 100644 --- a/src/Window.cc +++ b/src/Window.cc @@ -1541,8 +1541,8 @@ void BlackboxWindow::configureShape(void) { bool BlackboxWindow::setInputFocus(void) { if (flags.focused) return True; - assert((flags.stuck || // window must be on the current workspace or sticky - blackbox_attrib.workspace == screen->getCurrentWorkspaceID())); + assert(flags.stuck || // window must be on the current workspace or sticky + blackbox_attrib.workspace == screen->getCurrentWorkspaceID()); /* We only do this check for normal windows and dialogs because other windows |
