only ignore NotifyGrab again
This commit is contained in:
parent
668b2866c2
commit
e767dd79c7
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ void EventDispatcher::dispatchFocus(const XEvent &e)
|
||||||
// (e.xfocus.type == FocusIn ? "IN" : "OUT"),
|
// (e.xfocus.type == FocusIn ? "IN" : "OUT"),
|
||||||
// e.xfocus.detail, e.xfocus.window);
|
// e.xfocus.detail, e.xfocus.window);
|
||||||
// ignore focus changes from grabs
|
// ignore focus changes from grabs
|
||||||
if (e.xfocus.mode != NotifyNormal) //|| e.xfocus.mode == NotifyUngrab ||
|
if (e.xfocus.mode == NotifyGrab) //|| e.xfocus.mode == NotifyUngrab ||
|
||||||
// From Metacity, from WindowMaker, ignore all funky pointer root events
|
// From Metacity, from WindowMaker, ignore all funky pointer root events
|
||||||
// its commented out cuz I don't think we need this at all. If problems
|
// its commented out cuz I don't think we need this at all. If problems
|
||||||
// arise we can look into it
|
// arise we can look into it
|
||||||
|
|
Loading…
Reference in a new issue