nm that, pointless...

This commit is contained in:
Dana Jansens 2003-04-06 18:38:51 +00:00
parent d1913d1d01
commit d43a109ba2

View file

@ -154,8 +154,6 @@ void event_process(XEvent *e)
switch (e->type) {
case ButtonPress:
case ButtonRelease:
if (ob_state != State_Running) return;
event_lasttime = e->xbutton.time;
e->xbutton.state &= ~(LockMask | NumLockMask | ScrollLockMask);
/* kill off the Button1Mask etc, only want the modifiers */
@ -163,8 +161,6 @@ void event_process(XEvent *e)
Mod2Mask | Mod3Mask | Mod4Mask | Mod5Mask);
break;
case KeyPress:
if (ob_state != State_Running) return;
event_lasttime = e->xkey.time;
e->xkey.state &= ~(LockMask | NumLockMask | ScrollLockMask);
/* kill off the Button1Mask etc, only want the modifiers */
@ -189,8 +185,6 @@ void event_process(XEvent *e)
break;
case KeyRelease:
if (ob_state != State_Running) return;
event_lasttime = e->xkey.time;
e->xkey.state &= ~(LockMask | NumLockMask | ScrollLockMask);
/* kill off the Button1Mask etc, only want the modifiers */
@ -213,8 +207,6 @@ void event_process(XEvent *e)
}
break;
case MotionNotify:
if (ob_state != State_Running) return;
event_lasttime = e->xmotion.time;
e->xmotion.state &= ~(LockMask | NumLockMask | ScrollLockMask);
/* kill off the Button1Mask etc, only want the modifiers */