Skip to content

Commit

Permalink
Fix bad image option name in the rc file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Monin committed Apr 12, 2008
1 parent 3129bfd commit 3b9d873
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rcfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ void save_options(void)
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);
Expand Down Expand Up @@ -577,7 +577,7 @@ void load_options(void)
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,
Expand Down

0 comments on commit 3b9d873

Please sign in to comment.