diff options
Diffstat (limited to 'gui/gdmsetup.c')
-rw-r--r-- | gui/gdmsetup.c | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/gui/gdmsetup.c b/gui/gdmsetup.c index 1729e46a..585c4a3d 100644 --- a/gui/gdmsetup.c +++ b/gui/gdmsetup.c @@ -863,10 +863,6 @@ setup_xdmcp_support (void) gtk_widget_show (xdmcp_vbox); #endif /* HAVE_LIBXDMCP */ - /* Why doesn't glade have this? */ - gtk_label_set_use_markup (GTK_LABEL (GTK_BIN (xdmcp_toggle)->child), - TRUE); - gtk_widget_set_sensitive (xdmcp_frame, GTK_TOGGLE_BUTTON (xdmcp_toggle)->active); @@ -1947,6 +1943,24 @@ setup_gui (void) g_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (dialog_response), NULL); + /* setup bold thingies */ + glade_helper_tagify_label (xml, "greeter_cat_label", "b"); + glade_helper_tagify_label (xml, "autologin_cat_label", "b"); + glade_helper_tagify_label (xml, "timedlogin_cat_label", "b"); + + glade_helper_tagify_label (xml, "sg_logo_cat_label", "b"); + glade_helper_tagify_label (xml, "sg_background_cat_label", "b"); + glade_helper_tagify_label (xml, "sg_misc_cat_label", "b"); + + glade_helper_tagify_label (xml, "options_cat_label", "b"); + + glade_helper_tagify_label (xml, "gg_preview_cat_label", "b"); + glade_helper_tagify_label (xml, "gg_author_label", "b"); + glade_helper_tagify_label (xml, "gg_desc_label", "b"); + glade_helper_tagify_label (xml, "gg_copyright_label", "b"); + + glade_helper_tagify_label (xml, "enable_xdmcp", "b"); + setup_xdmcp_support (); setup_background_support (); setup_greeter_backselect (); |