summaryrefslogtreecommitdiff
path: root/src/options.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2020-04-05 12:25:35 +0200
committerDaniel Friesel <derf@finalrewind.org>2020-04-05 12:25:42 +0200
commitb7f13619d3a6a4fbd62dfa6da150e8f0bf571b7c (patch)
tree103850df1f3fa2728d09e20f7763dc72b4fab232 /src/options.c
parentf9af53cd8144714e75e3f95b9162882f4ee6334a (diff)
Use conversion cache for imlib2 and dcraw images
Diffstat (limited to 'src/options.c')
-rw-r--r--src/options.c6
1 files changed, 3 insertions, 3 deletions
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;