left-align the image.

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

	* app/widgets/gimpmessagebox.c (gimp_message_box_constructor):
	left-align the image.

	* app/actions/data-commands.c
	* app/actions/documents-commands.c
	* app/actions/file-commands.c
	* app/actions/templates-commands.c: use more meaningful stock
	icons for message dialogs.

svn path=/trunk/; revision=23651
This commit is contained in:
Sven Neumann 2007-09-25 14:03:33 +00:00 committed by Sven Neumann
parent e2ed6cd182
commit 5297f9bd3e
6 changed files with 16 additions and 5 deletions

View File

@ -1,3 +1,14 @@
2007-09-25 Sven Neumann <sven@gimp.org>
* app/widgets/gimpmessagebox.c (gimp_message_box_constructor):
left-align the image.
* app/actions/data-commands.c
* app/actions/documents-commands.c
* app/actions/file-commands.c
* app/actions/templates-commands.c: use more meaningful stock
icons for message dialogs.
2007-09-25 Sven Neumann <sven@gimp.org>
* plug-ins/common/decompose.c: reverted "fix" for bug #477008.

View File

@ -228,7 +228,7 @@ data_delete_cmd_callback (GtkAction *action,
delete_data->view = view;
delete_data->data = data;
dialog = gimp_message_dialog_new (_("Delete Object"), GIMP_STOCK_QUESTION,
dialog = gimp_message_dialog_new (_("Delete Object"), GTK_STOCK_DELETE,
GTK_WIDGET (view), 0,
gimp_standard_help_func, NULL,

View File

@ -185,7 +185,7 @@ documents_clear_cmd_callback (GtkAction *action,
context = gimp_container_view_get_context (editor->view);
dialog = gimp_message_dialog_new (_("Clear Document History"),
GIMP_STOCK_QUESTION,
GTK_STOCK_CLEAR,
GTK_WIDGET (editor),
GTK_DIALOG_MODAL |
GTK_DIALOG_DESTROY_WITH_PARENT,

View File

@ -352,7 +352,7 @@ file_revert_cmd_callback (GtkAction *action,
gchar *filename;
dialog =
gimp_message_dialog_new (_("Revert Image"), GIMP_STOCK_QUESTION,
gimp_message_dialog_new (_("Revert Image"), GTK_STOCK_REVERT_TO_SAVED,
display->shell, 0,
gimp_standard_help_func, GIMP_HELP_FILE_REVERT,

View File

@ -218,7 +218,7 @@ templates_delete_cmd_callback (GtkAction *action,
delete_data->template = template;
dialog =
gimp_message_dialog_new (_("Delete Template"), GIMP_STOCK_QUESTION,
gimp_message_dialog_new (_("Delete Template"), GTK_STOCK_DELETE,
GTK_WIDGET (editor), 0,
gimp_standard_help_func, NULL,

View File

@ -172,7 +172,7 @@ gimp_message_box_constructor (GType type,
GTK_ICON_SIZE_DIALOG);
gtk_widget_pop_composite_child ();
gtk_misc_set_alignment (GTK_MISC (box->image), 0.5, 0.0);
gtk_misc_set_alignment (GTK_MISC (box->image), 0.0, 0.0);
gtk_widget_set_parent (box->image, GTK_WIDGET (box));
gtk_widget_show (box->image);
}