Trim trailing white spaces on empty lines.
[geeqie.git] / src / options.c
index de09246..15c0351 100644 (file)
@@ -38,7 +38,7 @@ ConfOptions *init_options(ConfOptions *options)
 
        options->dnd_icon_size = 48;
        options->duplicates_similarity_threshold = 99;
-       
+
        options->file_filter.disable = FALSE;
        options->file_filter.show_dot_directory = FALSE;
        options->file_filter.show_hidden_files = FALSE;
@@ -92,7 +92,7 @@ ConfOptions *init_options(ConfOptions *options)
        options->place_dialogs_under_mouse = FALSE;
 
        options->progressive_key_scrolling = TRUE;
-       
+
        options->metadata.enable_metadata_dirs = FALSE;
        options->metadata.save_in_image_file = FALSE;
        options->metadata.save_legacy_IPTC = FALSE;
@@ -106,7 +106,7 @@ ConfOptions *init_options(ConfOptions *options)
        options->metadata.confirm_on_dir_change = TRUE;
        options->metadata.keywords_case_sensitive = FALSE;
        options->metadata.write_orientation = TRUE;
-       
+
        options->show_icon_names = TRUE;
 
        options->slideshow.delay = 50;
@@ -124,7 +124,7 @@ ConfOptions *init_options(ConfOptions *options)
 
        options->tree_descend_subdirs = FALSE;
        options->update_on_time_change = TRUE;
-       
+
        options->stereo.fixed_w = 1920;
        options->stereo.fixed_h = 1080;
        options->stereo.fixed_x1 = 0;
@@ -165,7 +165,7 @@ void setup_default_options(ConfOptions *options)
 void copy_layout_options(LayoutOptions *dest, const LayoutOptions *src)
 {
        free_layout_options_content(dest);
-       
+
        *dest = *src;
        dest->id = g_strdup(src->id);
        dest->order = g_strdup(src->order);
@@ -255,7 +255,7 @@ gboolean load_options(ConfOptions *options)
                DEBUG_1("Loading options from %s ... %s", rc_path, success ? "done" : "failed");
                g_free(rc_path);
                }
-       
+
        rc_path = g_build_filename(get_rc_dir(), RC_FILE_NAME, NULL);
        success = load_config_from_file(rc_path, TRUE);
        DEBUG_1("Loading options from %s ... %s", rc_path, success ? "done" : "failed");