# HG changeset patch # User Rob Flynn # Date 975573491 0 # Node ID f81cf8c2db0557ee77c5331f1b3c5176663d0c30 # Parent 635bd4791a4dedd274537cfb0f64c683c5da699f [gaim-migrate @ 1184] Looks a little bit better. I dunno. committer: Tailor Script diff -r 635bd4791a4d -r f81cf8c2db05 src/dialogs.c --- a/src/dialogs.c Thu Nov 30 08:18:59 2000 +0000 +++ b/src/dialogs.c Thu Nov 30 08:38:11 2000 +0000 @@ -1147,7 +1147,8 @@ GtkWidget *vbox; GtkWidget *hbox; GtkWidget *button; - + GtkWidget *sep; + struct addbp *b = g_new0(struct addbp, 1); b->window = gtk_window_new(GTK_WINDOW_DIALOG); @@ -1190,25 +1191,33 @@ // I was left aligning these but I dunno if Like it -- Rob /* Set up the different options */ - b->p_signon = gtk_check_button_new_with_label(_("Sign On")); + b->p_signon = gtk_check_button_new_with_label(_("Pounce on sign on")); gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(b->p_signon), TRUE); - b->p_unaway = gtk_check_button_new_with_label(_("Return from away")); - b->p_unidle = gtk_check_button_new_with_label(_("Return from idle")); - + b->p_unaway = gtk_check_button_new_with_label(_("Pounce on return from away")); + b->p_unidle = gtk_check_button_new_with_label(_("Pounce on return from idle")); + + sep = gtk_hseparator_new(); + /* Show them */ - gtk_widget_show(label); +// gtk_widget_show(label); gtk_widget_show(b->p_signon); gtk_widget_show(b->p_unaway); gtk_widget_show(b->p_unidle); - + gtk_widget_show(sep); + /* And pack'em */ - gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); + gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0); + //gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), b->p_signon, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), b->p_unaway, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), b->p_unidle, FALSE, FALSE, 0); - - label = gtk_label_new(_("Actions")); + sep = gtk_hseparator_new(); + gtk_widget_show(sep); + gtk_box_pack_start(GTK_BOX(vbox), sep, FALSE, FALSE, 0); + + + //label = gtk_label_new(_("Actions")); // gtk_misc_set_alignment(GTK_MISC(label), 0, 0); // I was left aligning these but I dunno if Like it -- Rob @@ -1219,15 +1228,16 @@ b->sendim = gtk_check_button_new_with_label(_("Send IM on pounce")); gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(b->sendim), TRUE); - gtk_widget_show(label); + //gtk_widget_show(label); gtk_widget_show(b->openwindow); gtk_widget_show(b->sendim); - gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0); + //gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0); gtk_box_pack_start(GTK_BOX(vbox), b->openwindow, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), b->sendim, FALSE, FALSE, 0); label = gtk_label_new(_("Message:")); + gtk_misc_set_alignment(GTK_MISC(label), 0, 0); gtk_widget_show(label); gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0);