Explorar el Código

Fixed issue #42: image dragging broken by commit b845827

master
Bert Münnich hace 13 años
padre
commit
497880e102
Se han modificado 2 ficheros con 4 adiciones y 2 borrados
  1. +1
    -1
      Makefile
  2. +3
    -1
      commands.c

+ 1
- 1
Makefile Ver fichero

@@ -1,4 +1,4 @@
VERSION = git-20120227
VERSION = git-20120302

CC = gcc
CFLAGS = -ansi -Wall -pedantic -O2


+ 3
- 1
commands.c Ver fichero

@@ -262,8 +262,10 @@ bool i_drag(arg_t a) {
if (dragging)
next = XCheckIfEvent(win.env.dpy, &e, is_motionnotify, None);
if ((!dragging || !next) && (dx != 0 || dy != 0)) {
if (img_move(&img, dx, dy))
if (img_move(&img, dx, dy)) {
img_render(&img);
win_draw(&win);
}
dx = dy = 0;
}
}


Cargando…
Cancelar
Guardar