aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--src/ephy-toolbar-editor.c2
-rwxr-xr-xsrc/pdm-dialog.c3
-rw-r--r--src/window-commands.c2
4 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a5a027d3f..8b037b617 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2005-09-01 Christian Persch <chpe@cvs.gnome.org>
+ * src/ephy-toolbar-editor.c: (ephy_toolbar_editor_constructor):
+ * src/pdm-dialog.c: (show_cookies_properties):
+
+ Fix HIG spacings.
+
+2005-09-01 Christian Persch <chpe@cvs.gnome.org>
+
* data/glade/epiphany.glade:
Remove find dialogue, and tweak spacings to be HIG compliant.
diff --git a/src/ephy-toolbar-editor.c b/src/ephy-toolbar-editor.c
index 97a8558d6..098991d8c 100644
--- a/src/ephy-toolbar-editor.c
+++ b/src/ephy-toolbar-editor.c
@@ -196,7 +196,7 @@ ephy_toolbar_editor_constructor (GType type,
vbox = GTK_DIALOG (dialog)->vbox;
gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (dialog)), 5);
- gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 18);
+ gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog)->vbox), 2);
gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
gtk_window_set_title (GTK_WINDOW (dialog), _("Toolbar Editor"));
gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (priv->window));
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index c7b3efc56..b25c819c9 100755
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -907,7 +907,8 @@ show_cookies_properties (PdmDialog *dialog,
-1, -1, FALSE,
EPHY_STATE_WINDOW_SAVE_SIZE | EPHY_STATE_WINDOW_SAVE_POSITION);
gtk_dialog_set_has_separator (GTK_DIALOG(gdialog), FALSE);
- gtk_container_set_border_width (GTK_CONTAINER(gdialog), 6);
+ gtk_container_set_border_width (GTK_CONTAINER (gdialog), 5);
+ gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (gdialog)->vbox), 2);
table = gtk_table_new (2, 4, FALSE);
gtk_container_set_border_width (GTK_CONTAINER (table), 5);
diff --git a/src/window-commands.c b/src/window-commands.c
index cc9b5ee1b..09cc5883c 100644
--- a/src/window-commands.c
+++ b/src/window-commands.c
@@ -776,7 +776,7 @@ window_cmd_help_about (GtkAction *action,
};
gtk_show_about_dialog (GTK_WINDOW (window),
- "name", _("Web Browser"),
+ "name", _("GNOME Web Browser"),
"version", VERSION,
"copyright", "Copyright © 2002-2004 Marco Pesenti Gritti\n"
"Copyright © 2003-2005 The GNOME Web Browser Developers",