# HG changeset patch # User zas_ # Date 1208020834 0 # Node ID 0565ee45b8acfc5f585464e251dfcd55c71064c5 # Parent 9122c5da12238b9153ce34c0f39ba00b317ee2d9 Fix bad image option name in the rc file. diff -r 9122c5da1223 -r 0565ee45b8ac src/rcfile.c --- a/src/rcfile.c Sat Apr 12 17:09:20 2008 +0000 +++ b/src/rcfile.c Sat Apr 12 17:20:34 2008 +0000 @@ -337,7 +337,7 @@ write_bool_option(ssi, "image.limit_autofit_size", options->image.limit_autofit_size); write_int_option(ssi, "image.max_autofit_size", options->image.max_autofit_size); write_int_option(ssi, "image.scroll_reset_method", options->image.scroll_reset_method); - write_int_option(ssi, "image_cache_size_max", options->image.tile_cache_max); + write_int_option(ssi, "image.tile_cache_max", options->image.tile_cache_max); write_int_option(ssi, "image.zoom_quality", options->image.zoom_quality); write_int_option(ssi, "image.dither_quality", options->image.dither_quality); write_int_option(ssi, "image.zoom_increment", options->image.zoom_increment); @@ -577,7 +577,7 @@ options->image.scroll_reset_method = read_int_option(f, option, "image.scroll_reset_method", value, options->image.scroll_reset_method); options->image.tile_cache_max = read_int_option(f, option, - "image.cache_size_max", value, options->image.tile_cache_max); + "image.tile_cache_max", value, options->image.tile_cache_max); options->image.zoom_quality = CLAMP(read_int_option(f, option, "image.zoom_quality", value, options->image.zoom_quality), GDK_INTERP_NEAREST, GDK_INTERP_HYPER); options->image.dither_quality = CLAMP(read_int_option(f, option,