diff options
author | rathnor <rathnor> | 2003-09-14 11:56:11 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-09-14 11:56:11 (GMT) |
commit | 7047c4b7ad6ad33bcf062303ffa4a93ed2363cea (patch) | |
tree | 1a7c09b282f672a598db6088362e5267c3157f7b /src | |
parent | f68c15cfa29a3eefc6e209ab1799e4d02c5cce40 (diff) | |
download | fluxbox-7047c4b7ad6ad33bcf062303ffa4a93ed2363cea.zip fluxbox-7047c4b7ad6ad33bcf062303ffa4a93ed2363cea.tar.bz2 |
correct little focus thing
Diffstat (limited to 'src')
-rw-r--r-- | src/fluxbox.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc index 2fbf56b..b266114 100644 --- a/src/fluxbox.cc +++ b/src/fluxbox.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: fluxbox.cc,v 1.191 2003/09/14 11:23:48 rathnor Exp $ | 25 | // $Id: fluxbox.cc,v 1.192 2003/09/14 11:56:11 rathnor Exp $ |
26 | 26 | ||
27 | #include "fluxbox.hh" | 27 | #include "fluxbox.hh" |
28 | 28 | ||
@@ -866,7 +866,7 @@ void Fluxbox::handleEvent(XEvent * const e) { | |||
866 | } break; | 866 | } break; |
867 | case FocusOut:{ | 867 | case FocusOut:{ |
868 | // and here we ignore some window losing the special grab focus | 868 | // and here we ignore some window losing the special grab focus |
869 | if (e->xfocus.mode == NotifyUngrab || | 869 | if (e->xfocus.mode == NotifyGrab || |
870 | e->xfocus.detail == NotifyPointer) | 870 | e->xfocus.detail == NotifyPointer) |
871 | break; | 871 | break; |
872 | WinClient *winclient = searchWindow(e->xfocus.window); | 872 | WinClient *winclient = searchWindow(e->xfocus.window); |