From b7f13619d3a6a4fbd62dfa6da150e8f0bf571b7c Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 5 Apr 2020 12:25:35 +0200 Subject: Use conversion cache for imlib2 and dcraw images --- src/options.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/options.c') diff --git a/src/options.c b/src/options.c index eb0fbe5..19f8db9 100644 --- a/src/options.c +++ b/src/options.c @@ -76,7 +76,7 @@ void init_parse_options(int argc, char **argv) #ifdef HAVE_INOTIFY opt.auto_reload = 1; #endif /* HAVE_INOTIFY */ - opt.use_http_cache = 1; + opt.use_conversion_cache = 1; feh_getopt_theme(argc, argv); @@ -525,7 +525,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun) break; case 'R': opt.reload = atof(optarg); - opt.use_http_cache = 0; + opt.use_conversion_cache = 0; #ifdef HAVE_INOTIFY opt.auto_reload = 0; #endif @@ -831,7 +831,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun) opt.x11_class = estrdup(optarg); break; case 250: - opt.use_http_cache = 0; + opt.use_conversion_cache = 0; break; default: break; -- cgit v1.2.3