Selaa lähdekoodia

Mode-guard in on_motionnotify

master
Bert 14 vuotta sitten
vanhempi
commit
72e8baf13e
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      main.c

+ 1
- 1
main.c Näytä tiedosto

@@ -538,7 +538,7 @@ void on_buttonpress(XButtonEvent *bev) {
}

void on_motionnotify(XMotionEvent *mev) {
if (!mev)
if (!mev || mode != MODE_NORMAL)
return;

if (mev->x >= 0 && mev->x <= win.w && mev->y >= 0 && mev->y <= win.h) {


Loading…
Peruuta
Tallenna