aboutsummaryrefslogtreecommitdiffstats
path: root/src/pdm-dialog.c
diff options
context:
space:
mode:
authorChristian Neumair <cneumair@src.gnome.org>2003-05-20 03:53:28 +0800
committerChristian Neumair <cneumair@src.gnome.org>2003-05-20 03:53:28 +0800
commit0c843e88a595d6191a043426b99b49f65d2b24e4 (patch)
treea6afa871bade95702493ce5a8a1f9767bbebdda1 /src/pdm-dialog.c
parente47814bfadf34a954531ebbb61a45c4730ccc4d5 (diff)
downloadgsoc2013-epiphany-0c843e88a595d6191a043426b99b49f65d2b24e4.tar
gsoc2013-epiphany-0c843e88a595d6191a043426b99b49f65d2b24e4.tar.gz
gsoc2013-epiphany-0c843e88a595d6191a043426b99b49f65d2b24e4.tar.bz2
gsoc2013-epiphany-0c843e88a595d6191a043426b99b49f65d2b24e4.tar.lz
gsoc2013-epiphany-0c843e88a595d6191a043426b99b49f65d2b24e4.tar.xz
gsoc2013-epiphany-0c843e88a595d6191a043426b99b49f65d2b24e4.tar.zst
gsoc2013-epiphany-0c843e88a595d6191a043426b99b49f65d2b24e4.zip
Made (hopefully) all dialogs HIG compliant, at least when it comes to spacing.
Last patch of the #112781 patch series.
Diffstat (limited to 'src/pdm-dialog.c')
-rwxr-xr-xsrc/pdm-dialog.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index 41bb553e4..87e594812 100755
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -601,7 +601,7 @@ show_cookies_properties (PdmDialog *dialog,
PROP_DIALOG);
gdialog = gtk_dialog_new_with_buttons
- (_("Cookie properties"),
+ (_("Cookie Properties"),
GTK_WINDOW(parent),
GTK_DIALOG_MODAL,
GTK_STOCK_CLOSE, 0, NULL);
@@ -609,9 +609,9 @@ show_cookies_properties (PdmDialog *dialog,
gtk_container_set_border_width (GTK_CONTAINER(gdialog), 6);
table = gtk_table_new (2, 4, FALSE);
- gtk_container_set_border_width (GTK_CONTAINER(table), 6);
- gtk_table_set_row_spacings (GTK_TABLE(table), 10);
- gtk_table_set_col_spacings (GTK_TABLE(table), 10);
+ gtk_container_set_border_width (GTK_CONTAINER(table), 5);
+ gtk_table_set_row_spacings (GTK_TABLE(table), 6);
+ gtk_table_set_col_spacings (GTK_TABLE(table), 12);
gtk_widget_show (table);
str = g_strconcat ("<b>", _("Value:"), "</b>", NULL);