aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-09-11 21:01:36 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-09-11 21:01:36 (GMT)
commit3ac1ab023e33487ed9b851cef9c82d144ed62bc8 (patch)
treeec0cc0ecd9dfee406e6915952557adb741a0d2f6
parentbf620f96df0942db356255f8af7f522ae46af82e (diff)
downloadfluxbox_pavel-3ac1ab023e33487ed9b851cef9c82d144ed62bc8.zip
fluxbox_pavel-3ac1ab023e33487ed9b851cef9c82d144ed62bc8.tar.bz2
try to fix some weird focus issues
-rw-r--r--src/fluxbox.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 3963d89..4a223f9 100644
--- a/src/fluxbox.cc
+++ b/src/fluxbox.cc
@@ -825,6 +825,7 @@ void Fluxbox::handleEvent(XEvent * const e) {
825 // a grab is something of a pseudo-focus event, so we ignore 825 // a grab is something of a pseudo-focus event, so we ignore
826 // them, here we ignore some window receiving it 826 // them, here we ignore some window receiving it
827 if (e->xfocus.mode == NotifyGrab || 827 if (e->xfocus.mode == NotifyGrab ||
828 e->xfocus.mode == NotifyUngrab ||
828 e->xfocus.detail == NotifyPointer || 829 e->xfocus.detail == NotifyPointer ||
829 e->xfocus.detail == NotifyInferior) 830 e->xfocus.detail == NotifyInferior)
830 break; 831 break;