searching for a better way to discard enter notifies
This commit is contained in:
8
event.c
8
event.c
@ -4,6 +4,7 @@
|
||||
*/
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <X11/keysym.h>
|
||||
@ -37,13 +38,6 @@ void (*handler[LASTEvent]) (XEvent *) = {
|
||||
[UnmapNotify] = unmapnotify
|
||||
};
|
||||
|
||||
void
|
||||
discard_events(long even_mask)
|
||||
{
|
||||
XEvent ev;
|
||||
while(XCheckMaskEvent(dpy, even_mask, &ev));
|
||||
}
|
||||
|
||||
static void
|
||||
buttonpress(XEvent *e)
|
||||
{
|
||||
|
Reference in New Issue
Block a user