don't reverse the order of URIs when opening multiple files as layers.

2007-09-11  Sven Neumann  <sven@gimp.org>

	* app/dialogs/file-open-dialog.c: don't reverse the order of URIs
	when opening multiple files as layers. Fixes one aspect of bug
	#469752.

svn path=/trunk/; revision=23498
This commit is contained in:
Sven Neumann 2007-09-11 11:05:10 +00:00 committed by Sven Neumann
parent 563bb6fe80
commit e65331332b
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2007-09-11 Sven Neumann <sven@gimp.org>
* app/dialogs/file-open-dialog.c: don't reverse the order of URIs
when opening multiple files as layers. Fixes one aspect of bug
#469752.
2007-09-11 Sven Neumann <sven@gimp.org>
* plug-ins/common/lcms.c: allow to specify rendering intent and

View File

@ -110,12 +110,6 @@ file_open_dialog_response (GtkWidget *open_dialog,
gimp_file_dialog_set_sensitive (dialog, FALSE);
/* open layers in reverse order so they appear in the same
* order as in the file dialog
*/
if (dialog->image)
uris = g_slist_reverse (uris);
for (list = uris; list; list = g_slist_next (list))
{
gchar *filename = file_utils_filename_from_uri (list->data);