From 7b75fa6e7df3724b7649bf6d0c42c0aaed9e5029 Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Tue, 9 Mar 2004 21:10:42 +0000 Subject: Remove separator from dialogs per HIG. 2004-03-04 William Jon McCann * e-dialog-utils.c (e_notice, e_notice_with_xid, save_ok): * e-request.c (e_request_string): * e-passwords.c (e_passwords_ask_password): Remove separator from dialogs per HIG. svn path=/trunk/; revision=25003 --- e-util/e-dialog-utils.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'e-util/e-dialog-utils.c') diff --git a/e-util/e-dialog-utils.c b/e-util/e-dialog-utils.c index a37519297e..973c170b3f 100644 --- a/e-util/e-dialog-utils.c +++ b/e-util/e-dialog-utils.c @@ -59,6 +59,7 @@ e_notice (gpointer parent, GtkMessageType type, const char *format, ...) GTK_BUTTONS_OK, "%s", str); + gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE); va_end (args); g_free (str); @@ -93,6 +94,7 @@ e_notice_with_xid (GdkNativeWindow parent, GtkMessageType type, const char *form GTK_BUTTONS_OK, "%s", str); + gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE); va_end (args); g_free (str); @@ -247,6 +249,7 @@ save_ok (GtkWidget *widget, gpointer data) _("A file by that name already exists.\n" "Overwrite it?")); gtk_window_set_title (GTK_WINDOW (dlg), _("Overwrite file?")); + gtk_dialog_set_has_separator (GTK_DIALOG (dlg), FALSE); btn = gtk_dialog_run (GTK_DIALOG (dlg)); gtk_widget_destroy (dlg); -- cgit v1.2.3