Mercurial > geeqie
comparison src/rcfile.c @ 342:07490120df2d
Rename dupe_custom_threshold option to duplicates_similarity_threshold.
author | zas_ |
---|---|
date | Sat, 12 Apr 2008 22:10:38 +0000 |
parents | 15c6b94545a2 |
children | 63380ea3e65d |
comparison
equal
deleted
inserted
replaced
341:15c6b94545a2 | 342:07490120df2d |
---|---|
287 write_char_option(ssi, "startup_path", options->startup_path); | 287 write_char_option(ssi, "startup_path", options->startup_path); |
288 | 288 |
289 write_bool_option(ssi, "progressive_keyboard_scrolling", options->progressive_key_scrolling); | 289 write_bool_option(ssi, "progressive_keyboard_scrolling", options->progressive_key_scrolling); |
290 write_bool_option(ssi, "local_metadata", options->enable_metadata_dirs); | 290 write_bool_option(ssi, "local_metadata", options->enable_metadata_dirs); |
291 | 291 |
292 write_int_option(ssi, "custom_similarity_threshold", options->dupe_custom_threshold); | 292 write_int_option(ssi, "duplicates_similarity_threshold", options->duplicates_similarity_threshold); |
293 secure_fputc(ssi, '\n'); | 293 secure_fputc(ssi, '\n'); |
294 | 294 |
295 write_bool_option(ssi, "mouse_wheel_scrolls", options->mousewheel_scrolls); | 295 write_bool_option(ssi, "mouse_wheel_scrolls", options->mousewheel_scrolls); |
296 write_int_option(ssi, "open_recent_max", options->recent_list_max); | 296 write_int_option(ssi, "open_recent_max", options->recent_list_max); |
297 write_bool_option(ssi, "display_dialogs_under_mouse", options->place_dialogs_under_mouse); | 297 write_bool_option(ssi, "display_dialogs_under_mouse", options->place_dialogs_under_mouse); |
557 options->startup_path_enable = read_bool_option(f, option, | 557 options->startup_path_enable = read_bool_option(f, option, |
558 "enable_startup_path", value, options->startup_path_enable); | 558 "enable_startup_path", value, options->startup_path_enable); |
559 options->startup_path = read_char_option(f, option, | 559 options->startup_path = read_char_option(f, option, |
560 "startup_path", value_all, options->startup_path); | 560 "startup_path", value_all, options->startup_path); |
561 | 561 |
562 options->dupe_custom_threshold = read_int_option(f, option, | 562 options->duplicates_similarity_threshold = read_int_option(f, option, |
563 "custom_similarity_threshold", value, options->dupe_custom_threshold); | 563 "duplicates_similarity_threshold", value, options->duplicates_similarity_threshold); |
564 | 564 |
565 options->progressive_key_scrolling = read_bool_option(f, option, | 565 options->progressive_key_scrolling = read_bool_option(f, option, |
566 "progressive_keyboard_scrolling", value, options->progressive_key_scrolling); | 566 "progressive_keyboard_scrolling", value, options->progressive_key_scrolling); |
567 | 567 |
568 options->enable_metadata_dirs = read_bool_option(f, option, | 568 options->enable_metadata_dirs = read_bool_option(f, option, |