Ver código fonte

Fixed offsets in resize win to image

master
Bert 13 anos atrás
pai
commit
09335fdc14
2 arquivos alterados com 3 adições e 3 exclusões
  1. +1
    -1
      Makefile
  2. +2
    -2
      main.c

+ 1
- 1
Makefile Ver arquivo

@@ -1,6 +1,6 @@
all: sxiv

VERSION=git-20110217
VERSION=git-20110219

CC?=gcc
PREFIX?=/usr/local


+ 2
- 2
main.c Ver arquivo

@@ -344,8 +344,8 @@ void on_keypress(XKeyEvent *kev) {
/* render on next configurenotify */
break;
case XK_W:
x = win.x + img.x;
y = win.y + img.y;
x = MAX(0, win.x + img.x);
y = MAX(0, win.y + img.y);
w = img.w * img.zoom;
h = img.h * img.zoom;
if ((changed = win_moveresize(&win, x, y, w, h))) {


Carregando…
Cancelar
Salvar