Trim trailing white spaces on empty lines.
[geeqie.git] / src / view_dir_tree.c
index 88b78c4..7a5feea 100644 (file)
@@ -694,12 +694,12 @@ gboolean vdtree_set_fd(ViewDir *vd, FileData *dir_fd)
 
                gtk_tree_view_get_cursor(GTK_TREE_VIEW(vd->view), &old_tpath, NULL);
                tpath = gtk_tree_model_get_path(store, &iter);
-               
+
                if (!old_tpath || gtk_tree_path_compare(tpath, old_tpath) != 0)
                        {
                        /* setting the cursor scrolls the view; do not do that unless it is necessary */
                        gtk_tree_view_set_cursor(GTK_TREE_VIEW(vd->view), tpath, NULL, FALSE);
-                       
+
                        /* gtk_tree_view_set_cursor scrolls the window itself, but it sometimes
                           does not work (switch from dir_list to dir_tree) */
                        tree_view_row_make_visible(GTK_TREE_VIEW(vd->view), &iter, TRUE);