Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-09-02 20:52:46 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-09-02 20:52:46 (GMT)
commit2f5effb1b172ae264dc2a3f02d001f2124e139b8 (patch)
tree02f74316c064f64d3d93588ac38fe937516d5103
parent55c3c48147392c17582340cf20f6e1a35e1c015a (diff)
HIG fixes, thanks to Dennis Cranston
-rw-r--r--ChangeLog6
-rw-r--r--shell/ev-window.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 951bbb3..29e1765 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-08-17 Dennis Cranston <dennis_cranston@yahoo.com>
+
+ * shell/ev-window.c: (ev_window_cmd_edit_toolbar): A couple small
+ HIG fixes. Use title capitalization for window title. Use 12
+ pixels of space between the dialog's vbox and action area.
+
2005-09-02 Marco Pesenti Gritti <mpg@redhat.com>
* shell/ev-window.c: (file_open_dialog_response_cb),
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 92528ad..3d89325 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -2101,14 +2101,14 @@ ev_window_cmd_edit_toolbar (GtkAction *action, EvWindow *ev_window)
GtkWidget *dialog;
GtkWidget *editor;
- dialog = gtk_dialog_new_with_buttons (_("Toolbar editor"),
+ dialog = gtk_dialog_new_with_buttons (_("Toolbar Editor"),
GTK_WINDOW (ev_window),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_STOCK_CLOSE,
GTK_RESPONSE_CLOSE,
NULL);
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_default_size (GTK_WINDOW (dialog), 500, 400);