From: noname@inventati.org Date: Sat, 11 Apr 2015 10:15:51 +0000 (+0200) Subject: Remove unnecessary XFilterEvent call. X-Git-Url: https://git.danieliu.xyz/?a=commitdiff_plain;h=d2937b05aed9cee8d6651cd806d31682a853c773;p=st.git Remove unnecessary XFilterEvent call. XFilterEvent usually filters KeyPress events according to input method. At this point the window is not mapped. The only events that we process are ConfigureNotify and MapNotify. They should not be filtered by input method. --- diff --git a/st.c b/st.c index 83acd56..c48132a 100644 --- a/st.c +++ b/st.c @@ -3919,8 +3919,6 @@ run(void) { /* Waiting for window mapping */ do { XNextEvent(xw.dpy, &ev); - if(XFilterEvent(&ev, None)) - continue; if(ev.type == ConfigureNotify) { w = ev.xconfigure.width; h = ev.xconfigure.height;