app/actions/channels-commands.c app/actions/gradient-editor-commands.c
2004-05-04 Sven Neumann <sven@gimp.org> * app/actions/channels-commands.c * app/actions/gradient-editor-commands.c * app/actions/image-commands.c * app/actions/layers-commands.c * app/actions/qmask-commands.c * app/actions/templates-commands.c * app/actions/vectors-commands.c * app/display/gimpdisplayshell-filter-dialog.c * app/gui/convert-dialog.c * app/gui/module-browser.c * app/gui/offset-dialog.c * app/gui/palette-import-dialog.c * app/gui/resize-dialog.c * app/gui/resolution-calibrate-dialog.c * app/gui/tips-dialog.c * app/gui/user-install-dialog.c * app/widgets/gimpwidgets-utils.c * libgimpwidgets/gimpquerybox.c: set dialog border spacing to 12.
This commit is contained in:

committed by
Sven Neumann

parent
2c2f46aeca
commit
122e2c78db
@ -155,8 +155,8 @@ create_query_box (const gchar *title,
|
||||
{
|
||||
GtkWidget *image;
|
||||
|
||||
hbox = gtk_hbox_new (FALSE, 10);
|
||||
gtk_container_set_border_width (GTK_CONTAINER (hbox), 10);
|
||||
hbox = gtk_hbox_new (FALSE, 12);
|
||||
gtk_container_set_border_width (GTK_CONTAINER (hbox), 12);
|
||||
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (query_box->qbox)->vbox),
|
||||
hbox);
|
||||
gtk_widget_show (hbox);
|
||||
@ -167,7 +167,7 @@ create_query_box (const gchar *title,
|
||||
gtk_widget_show (image);
|
||||
}
|
||||
|
||||
query_box->vbox = gtk_vbox_new (FALSE, 6);
|
||||
query_box->vbox = gtk_vbox_new (FALSE, 12);
|
||||
|
||||
g_object_set_data (G_OBJECT (query_box->qbox), "gimp-query-box-vbox",
|
||||
query_box->vbox);
|
||||
@ -178,7 +178,7 @@ create_query_box (const gchar *title,
|
||||
}
|
||||
else
|
||||
{
|
||||
gtk_container_set_border_width (GTK_CONTAINER (query_box->vbox), 10);
|
||||
gtk_container_set_border_width (GTK_CONTAINER (query_box->vbox), 12);
|
||||
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (query_box->qbox)->vbox),
|
||||
query_box->vbox);
|
||||
}
|
||||
|
Reference in New Issue
Block a user