From 323d49b68c5e804ed3b8cada0e2274f1589b3484 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Tue, 14 Jul 2015 06:24:40 -0400 Subject: fix bug with focus events --- x11.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11.c b/x11.c index dc8d608..4c5291d 100644 --- a/x11.c +++ b/x11.c @@ -231,12 +231,12 @@ nextevent(GEvent *gev) case FocusIn: if (xic) XSetICFocus(xic); - break; + continue; case FocusOut: if (xic) XUnsetICFocus(xic); - break; + continue; case Expose: sync(); -- cgit v1.2.3