set a border width of 12 on the toplevel container.

2006-08-10  Sven Neumann  <sven@gimp.org>

        * plug-ins/metadata/interface.c (metadata_dialog): set a border
        width of 12 on the toplevel container.
This commit is contained in:
Sven Neumann 2006-08-10 11:16:33 +00:00 committed by Sven Neumann
parent 4066d80deb
commit f4b0133050
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-08-10 Sven Neumann <sven@gimp.org>
* plug-ins/metadata/interface.c (metadata_dialog): set a border
width of 12 on the toplevel container.
2006-08-10 Michael Natterer <mitch@gimp.org>
* plug-ins/common/oilify.c (run): the plug-in has one return

View File

@ -688,6 +688,7 @@ metadata_dialog (gint32 image_ID,
notebook = gtk_notebook_new ();
gtk_notebook_set_tab_pos (GTK_NOTEBOOK (notebook), GTK_POS_TOP);
gtk_container_set_border_width (GTK_CONTAINER (notebook), 12);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (mgui.dlg)->vbox), notebook,
TRUE, TRUE, 0);
gtk_widget_show (notebook);