Sfoglia il codice sorgente

Align big images on top-left corner

master
Bert 14 anni fa
parent
commit
5a35484e71
2 ha cambiato i file con 9 aggiunte e 2 eliminazioni
  1. +1
    -1
      Makefile
  2. +8
    -1
      image.c

+ 1
- 1
Makefile Vedi File

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

VERSION=git-20110225
VERSION=git-20110226

CC?=gcc
PREFIX?=/usr/local


+ 8
- 1
image.c Vedi File

@@ -162,7 +162,14 @@ void img_render(img_t *img, win_t *win) {
if (!img->re) {
/* rendered for the first time */
img->re = 1;
img_center(img, win);
if (img->zoom * img->w <= win->w)
img->x = (win->w - img->w * img->zoom) / 2;
else
img->x = 0;
if (img->zoom * img->h <= win->h)
img->y = (win->h - img->h * img->zoom) / 2;
else
img->y = 0;
}
if (img->checkpan) {


Loading…
Annulla
Salva