Browse Source

Fixed offsets in resize win to image

master
Bert 13 years ago
parent
commit
09335fdc14
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      Makefile
  2. +2
    -2
      main.c

+ 1
- 1
Makefile View File

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

VERSION=git-20110217
VERSION=git-20110219

CC?=gcc
PREFIX?=/usr/local


+ 2
- 2
main.c View File

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


Loading…
Cancel
Save