aboutsummaryrefslogtreecommitdiffstats
path: root/src/bookmarks/ephy-bookmark-properties.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/bookmarks/ephy-bookmark-properties.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/bookmarks/ephy-bookmark-properties.c')
-rw-r--r--src/bookmarks/ephy-bookmark-properties.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmark-properties.c b/src/bookmarks/ephy-bookmark-properties.c
index ad8afff56..5180d3863 100644
--- a/src/bookmarks/ephy-bookmark-properties.c
+++ b/src/bookmarks/ephy-bookmark-properties.c
@@ -335,12 +335,13 @@ build_ui (EphyBookmarkProperties *editor)
set_window_icon (editor);
gtk_dialog_set_has_separator (GTK_DIALOG (editor), FALSE);
- gtk_container_set_border_width (GTK_CONTAINER (editor), 6);
- gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (editor)->vbox), 12);
+ gtk_container_set_border_width (GTK_CONTAINER (editor), 5);
+ gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (editor)->vbox), 2);
table = gtk_table_new (2, 2, FALSE);
gtk_table_set_row_spacings (GTK_TABLE (table), 6);
- gtk_table_set_col_spacings (GTK_TABLE (table), 6);
+ gtk_table_set_col_spacings (GTK_TABLE (table), 12);
+ gtk_container_set_border_width (GTK_CONTAINER (GTK_TABLE (table)), 5);
gtk_widget_show (table);
entry = gtk_entry_new ();