소스 검색

Fixed slideshow delay corruption after GIF animation

master
Bert Münnich 11 년 전
부모
커밋
cd34aa2a6b
2개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      Makefile
  2. +2
    -1
      main.c

+ 1
- 1
Makefile 파일 보기

@@ -1,4 +1,4 @@
VERSION = git-20140104
VERSION = git-20140108

PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man


+ 2
- 1
main.c 파일 보기

@@ -400,7 +400,8 @@ void redraw(void)
img_render(&img);
if (img.ss.on) {
t = img.ss.delay * 1000;
t = img.multi.animate ? MAX(t, img.multi.length) : t;
if (img.multi.cnt > 0 && img.multi.animate)
t = MAX(t, img.multi.length);
set_timeout(slideshow, t, false);
}
} else {


불러오는 중...
취소
저장