preselect the image just as in file_open_from_image_cmd_callback().

2005-02-24  Sven Neumann  <sven@gimp.org>

	* app/actions/file-commands.c (file_open_as_layer_cmd_callback):
	preselect the image just as in file_open_from_image_cmd_callback().
This commit is contained in:
Sven Neumann 2005-02-24 17:18:11 +00:00 committed by Sven Neumann
parent 03182eba8d
commit 9c1c0081b4
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-02-24 Sven Neumann <sven@gimp.org>
* app/actions/file-commands.c (file_open_as_layer_cmd_callback):
preselect the image just as in file_open_from_image_cmd_callback().
2005-02-24 Michael Natterer <mitch@gimp.org>
Allow to resize layers with the image. Fixes bug #87789.

View File

@ -113,10 +113,15 @@ file_open_as_layer_cmd_callback (GtkAction *action,
{
GimpDisplay *gdisp;
GtkWidget *widget;
GimpImage *image;
const gchar *uri;
return_if_no_display (gdisp, data);
return_if_no_widget (widget, data);
file_open_dialog_show (widget, gdisp->gimage, NULL, TRUE);
image = gdisp->gimage;
uri = gimp_object_get_name (GIMP_OBJECT (image));
file_open_dialog_show (widget, image, uri, TRUE);
}
void