summaryrefslogtreecommitdiff
path: root/gui/gdmcomm.c
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2003-06-06 23:42:33 +0000
committerGeorge Lebl <jirka@src.gnome.org>2003-06-06 23:42:33 +0000
commit57a2917d1dcdf8afdd0d3ee88895ba327049b196 (patch)
treeeef791a3e5457f5948d2fdc1e8a51035567b72f8 /gui/gdmcomm.c
parent60833db3f64ce6d2954942de9a9e8907b61bf8f4 (diff)
downloadgdm-57a2917d1dcdf8afdd0d3ee88895ba327049b196.tar.gz
Dialogs have no separators. Makes them look at least a bit closer to HIG
Fri Jun 06 16:39:17 2003 George Lebl <jirka@5z.com> * daemon/errorgui.c, gui/gdmXnestchooser.c, gui/gdmchooser.c, gui/gdmcomm.c, gui/gdmflexiserver.c, gui/gdmlogin.c, gui/gdmphotosetup.c, gui/gdmsetup.c, gui/greeter/greeter.c, gui/greeter/greeter_action_language.c, gui/greeter/greeter_item_pam.c, gui/modules/dwellmouselistener.c, gui/modules/keymouselistener.c: Dialogs have no separators. Makes them look at least a bit closer to HIG
Diffstat (limited to 'gui/gdmcomm.c')
-rw-r--r--gui/gdmcomm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gui/gdmcomm.c b/gui/gdmcomm.c
index f2b617ae..32a06be7 100644
--- a/gui/gdmcomm.c
+++ b/gui/gdmcomm.c
@@ -390,7 +390,8 @@ gdmcomm_check (gboolean gui_bitching)
GTK_MESSAGE_WARNING,
GTK_BUTTONS_OK,
"foo");
- gtk_label_set_markup
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
+ gtk_label_set_markup
(GTK_LABEL (GTK_MESSAGE_DIALOG (dialog)->label),
_("<b>GDM (The GNOME Display Manager) "
"is not running.</b>\n\n"
@@ -417,6 +418,7 @@ gdmcomm_check (gboolean gui_bitching)
_("Cannot communicate with GDM "
"(The GNOME Display Manager), perhaps "
"you have an old version running."));
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
gtk_widget_show_all (dialog);
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);