changeset 2568:78518b422e23

Partial fix #504: Increase limit on Decoded Image Cache Size https://github.com/BestImageViewer/geeqie/issues/504
author Colin Clark <colin.clark@cclark.uk>
date Fri, 04 Aug 2017 21:04:45 +0100
parents 09386a249046
children ab3ff63854d4
files src/preferences.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/preferences.c	Fri Aug 04 17:04:07 2017 +0100
+++ b/src/preferences.c	Fri Aug 04 21:04:45 2017 +0100
@@ -1518,7 +1518,7 @@
 	group = pref_group_new(vbox, FALSE, _("Image loading and caching"), GTK_ORIENTATION_VERTICAL);
 
 	pref_spin_new_int(group, _("Decoded image cache size (Mb):"), NULL,
-			  0, 1024, 1, options->image.image_cache_max, &c_options->image.image_cache_max);
+			  0, 99999, 1, options->image.image_cache_max, &c_options->image.image_cache_max);
 	pref_checkbox_new_int(group, _("Preload next image"),
 			      options->image.enable_read_ahead, &c_options->image.enable_read_ahead);