searching for a better way to discard enter notifies
This commit is contained in:
parent
c2cf829ef9
commit
a1d0f81966
4 changed files with 12 additions and 54 deletions
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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue