move the logo to the top of the dialog.

2005-08-26  Michael Natterer  <mitch@gimp.org>

	* app/dialogs/about-dialog.c (about_dialog_add_logo): move the
	logo to the top of the dialog.
This commit is contained in:
Michael Natterer 2005-08-26 14:39:28 +00:00 committed by Michael Natterer
parent b19dc9af8b
commit cd160b3d66
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2005-08-26 Michael Natterer <mitch@gimp.org>
* app/dialogs/about-dialog.c (about_dialog_add_logo): move the
logo to the top of the dialog.
2005-08-26 Tor Lillqvist <tml@novell.com>
* app/plug-in/plug-in.c (plug_in_prep_for_exec, plug_in_open):

View file

@ -272,6 +272,7 @@ about_dialog_add_logo (GtkWidget *vbox,
align = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
gtk_box_pack_start (GTK_BOX (vbox), align, FALSE, FALSE, 0);
gtk_box_reorder_child (GTK_BOX (vbox), align, 0);
gtk_widget_show (align);
dialog->logo_area = gtk_drawing_area_new ();