aboutsummaryrefslogtreecommitdiffstats
path: root/commands.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 /commands.c
parent9a85dd41d8551f82a5d00c8e0dd0807e23bbdc6d (diff)
parent27bbaab976e02d2458099de96ec71d14aa1ade8e (diff)
downloadnsxiv-ff2ce99bf7dc08ce8eae47dd980c7af60ad51197.tar.zst
Merge djhejna/floatdelay
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands.c b/commands.c
index 7b0f457..44a6cf5 100644
--- a/commands.c
+++ b/commands.c
@@ -429,8 +429,8 @@ bool ci_slideshow(arg_t _)
{
if (prefix > 0) {
img.ss.on = true;
- img.ss.delay = prefix;
- set_timeout(slideshow, img.ss.delay * 1000, true);
+ img.ss.delay = prefix * 10;
+ set_timeout(slideshow, img.ss.delay * 100, true);
} else if (img.ss.on) {
img.ss.on = false;
reset_timeout(slideshow);