all repos — dmenu @ 377bd37e212b1ec4c03a481245603c6560d0be22

my build of dmenu

Handle IME input

Thanks to nzl <uruabi@gmail.com> for the patch!
Quentin Rameau quinq@fifth.space
Mon, 19 Mar 2018 15:42:28 +0100
commit

377bd37e212b1ec4c03a481245603c6560d0be22

parent

b6d2cc9aea979cb3557db39dbe65a2870d13e597

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M dmenu.cdmenu.c

@@ -552,7 +552,7 @@ {

XEvent ev; while (!XNextEvent(dpy, &ev)) { - if (XFilterEvent(&ev, win)) + if (XFilterEvent(&ev, None)) continue; switch(ev.type) { case Expose:

@@ -664,6 +664,7 @@ xic = XCreateIC(xim, XNInputStyle, XIMPreeditNothing | XIMStatusNothing,

XNClientWindow, win, XNFocusWindow, win, NULL); XMapRaised(dpy, win); + XSetInputFocus(dpy, win, RevertToParent, CurrentTime); if (embed) { XSelectInput(dpy, parentwin, FocusChangeMask); if (XQueryTree(dpy, parentwin, &dw, &w, &dws, &du) && dws) {

@@ -729,6 +730,8 @@ usage();

if (!setlocale(LC_CTYPE, "") || !XSupportsLocale()) fputs("warning: no locale support\n", stderr); + if (!XSetLocaleModifiers("")) + fputs("warning: no locale modifiers support\n", stderr); if (!(dpy = XOpenDisplay(NULL))) die("cannot open display"); screen = DefaultScreen(dpy);