From 36d5b27fff21f4b8475a594dabbd7b59630c9bee Mon Sep 17 00:00:00 2001 From: NRK Date: Tue, 18 Jun 2024 15:08:37 +0000 Subject: fix: -A not working (#503) the imlib2 based multi-frame loader has not respected -A setting since it's introduction in commit 76c2b81b. also change multi.framedelay to `int` to avoid signedness change warning. Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/503 Reviewed-by: eylles --- nsxiv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nsxiv.h') diff --git a/nsxiv.h b/nsxiv.h index fc0720c..978962e 100644 --- a/nsxiv.h +++ b/nsxiv.h @@ -180,7 +180,7 @@ typedef struct { unsigned int cnt; unsigned int sel; bool animate; - unsigned int framedelay; + int framedelay; int length; } multi_img_t; -- cgit v1.2.3-54-g00ecf