Don't pop up an error dialog box for every file that can't be saved. Before, this could have potentially meant having to manually close far too many of them.

svn path=/trunk/; revision=39080
This commit is contained in:
Chris Maynard 2011-09-21 17:41:12 +00:00
parent 6e66257c5d
commit ee167d7363
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ eo_save_all_clicked_cb(GtkWidget *widget _U_, gpointer arg)
g_string_free(safe_filename, TRUE);
} while ( g_file_test(save_as_fullpath, G_FILE_TEST_EXISTS) && ++count < 1000 );
count = 0;
if (!eo_save_entry(save_as_fullpath, entry, TRUE))
if (!eo_save_entry(save_as_fullpath, entry, FALSE))
all_saved = FALSE;
}
else