From: Dana Jansens Date: Tue, 30 Jul 2002 07:17:07 +0000 (+0000) Subject: don't focus non-visible windows X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=a7515b6d85b9cdb97d2365559109af74e68f6ff8;p=chaz%2Fopenbox don't focus non-visible windows --- 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 diff --git a/src/blackbox.cc b/src/blackbox.cc index 66a62e55..a818f128 100644 --- a/src/blackbox.cc +++ b/src/blackbox.cc @@ -328,7 +328,8 @@ void Blackbox::process_event(XEvent *e) { focus = True; } - if (focus && (win->isTransient() || win->getScreen()->doFocusNew())) + if (focus && (win->isTransient() || win->getScreen()->doFocusNew()) && + win->isVisible()) win->setInputFocus(); } else { BScreen *screen = searchScreen(e->xmaprequest.parent);