Mercurial > geeqie
changeset 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 |
files | src/dupe.c src/globals.c src/preferences.c src/rcfile.c src/typedefs.h |
diffstat | 5 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dupe.c Sat Apr 12 22:04:29 2008 +0000 +++ b/src/dupe.c Sat Apr 12 22:10:38 2008 +0000 @@ -1168,7 +1168,7 @@ if (mask & DUPE_MATCH_SIM_HIGH) m = 0.95; else if (mask & DUPE_MATCH_SIM_MED) m = 0.90; - else if (mask & DUPE_MATCH_SIM_CUSTOM) m = (gdouble)options->dupe_custom_threshold / 100.0; + else if (mask & DUPE_MATCH_SIM_CUSTOM) m = (gdouble)options->duplicates_similarity_threshold / 100.0; else m = 0.85; if (fast)
--- a/src/globals.c Sat Apr 12 22:04:29 2008 +0000 +++ b/src/globals.c Sat Apr 12 22:10:38 2008 +0000 @@ -107,7 +107,7 @@ options->fullscreen.show_info = TRUE; options->fullscreen.info = NULL; - options->dupe_custom_threshold = 99; + options->duplicates_similarity_threshold = 99; options->file_sort.case_sensitive = FALSE;
--- a/src/preferences.c Sat Apr 12 22:04:29 2008 +0000 +++ b/src/preferences.c Sat Apr 12 22:10:38 2008 +0000 @@ -256,7 +256,7 @@ options->update_on_time_change = c_options->update_on_time_change; options->image.exif_rotate_enable = c_options->image.exif_rotate_enable; - options->dupe_custom_threshold = c_options->dupe_custom_threshold; + options->duplicates_similarity_threshold = c_options->duplicates_similarity_threshold; options->tree_descend_subdirs = c_options->tree_descend_subdirs; #ifdef DEBUG @@ -1371,7 +1371,7 @@ options->enable_metadata_dirs, &c_options->enable_metadata_dirs); pref_spin_new_int(group, _("Custom similarity threshold:"), NULL, - 0, 100, 1, options->dupe_custom_threshold, &c_options->dupe_custom_threshold); + 0, 100, 1, options->duplicates_similarity_threshold, &c_options->duplicates_similarity_threshold); pref_spin_new_int(group, _("Offscreen cache size (Mb per image):"), NULL, 0, 128, 1, options->image.tile_cache_max, &c_options->image.tile_cache_max);
--- a/src/rcfile.c Sat Apr 12 22:04:29 2008 +0000 +++ b/src/rcfile.c Sat Apr 12 22:10:38 2008 +0000 @@ -289,7 +289,7 @@ write_bool_option(ssi, "progressive_keyboard_scrolling", options->progressive_key_scrolling); write_bool_option(ssi, "local_metadata", options->enable_metadata_dirs); - write_int_option(ssi, "custom_similarity_threshold", options->dupe_custom_threshold); + write_int_option(ssi, "duplicates_similarity_threshold", options->duplicates_similarity_threshold); secure_fputc(ssi, '\n'); write_bool_option(ssi, "mouse_wheel_scrolls", options->mousewheel_scrolls); @@ -559,8 +559,8 @@ options->startup_path = read_char_option(f, option, "startup_path", value_all, options->startup_path); - options->dupe_custom_threshold = read_int_option(f, option, - "custom_similarity_threshold", value, options->dupe_custom_threshold); + options->duplicates_similarity_threshold = read_int_option(f, option, + "duplicates_similarity_threshold", value, options->duplicates_similarity_threshold); options->progressive_key_scrolling = read_bool_option(f, option, "progressive_keyboard_scrolling", value, options->progressive_key_scrolling);