From: Nickolay V. Shmyrev Date: Fri, 2 Sep 2005 20:52:46 +0000 (+0000) Subject: HIG fixes, thanks to Dennis Cranston X-Git-Tag: EVINCE_0_5_0~187 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=2f5effb1b172ae264dc2a3f02d001f2124e139b8;p=evince.git HIG fixes, thanks to Dennis Cranston --- diff --git a/ChangeLog b/ChangeLog index 951bbb3e..29e1765d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-08-17 Dennis Cranston + + * 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 * shell/ev-window.c: (file_open_dialog_response_cb), diff --git a/shell/ev-window.c b/shell/ev-window.c index 92528ade..3d893253 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);