all repos — openbox @ b8f89ee368324f54a95f9ac8c5a24948365fb5ab

openbox fork - make it a bit more like ryudo

ignore focus events from grabs
Dana Jansens danakj@orodu.net
commit

b8f89ee368324f54a95f9ac8c5a24948365fb5ab

parent

d5cff9617cb8bf6416a1b574c111931e9e578b9f

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M otk/eventdispatcher.ccotk/eventdispatcher.cc

@@ -99,6 +99,9 @@ }

void OtkEventDispatcher::dispatchFocus(const XEvent &e) { + // ignore all focus changes from grabs + if (e.xfocus.mode != NotifyNormal) + return; if (e.type == FocusIn) { //printf("Got FocusIn!\n");