summaryrefslogtreecommitdiffstats
path: root/image.c
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2016-12-01 20:33:24 +0100
committerBert Münnich <ber.t@posteo.de>2016-12-01 21:18:41 +0100
commitff2ce99bf7dc08ce8eae47dd980c7af60ad51197 (patch)
tree5a96b7fc9d021f31fbce6c847efcfee7d4d79269 /image.c
parent9a85dd41d8551f82a5d00c8e0dd0807e23bbdc6d (diff)
parent27bbaab976e02d2458099de96ec71d14aa1ade8e (diff)
downloadnsxiv-ff2ce99bf7dc08ce8eae47dd980c7af60ad51197.tar.zst
Merge djhejna/floatdelay
Diffstat (limited to 'image.c')
-rw-r--r--image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/image.c b/image.c
index dd37207..6967b3d 100644
--- a/image.c
+++ b/image.c
@@ -76,7 +76,7 @@ void img_init(img_t *img, win_t *win)
img->gamma = MIN(MAX(options->gamma, -GAMMA_RANGE), GAMMA_RANGE);
img->ss.on = options->slideshow > 0;
- img->ss.delay = options->slideshow > 0 ? options->slideshow : SLIDESHOW_DELAY;
+ img->ss.delay = options->slideshow > 0 ? options->slideshow : SLIDESHOW_DELAY * 10;
}
#if HAVE_LIBEXIF