Explorar el Código

Mode-guard in on_motionnotify

master
Bert hace 14 años
padre
commit
72e8baf13e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      main.c

+ 1
- 1
main.c Ver fichero

@@ -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) {


Cargando…
Cancelar
Guardar