# HG changeset patch # User Rob Flynn # Date 975490108 0 # Node ID 71661061013da22b1d89ef44f9472bb7e2b7efaf # Parent 8fabc3349254835427a422100c7df8bd1baeb697 [gaim-migrate @ 1179] Looks slightly better (Pounce Dialog). I still cant decide how it should look. committer: Tailor Script diff -r 8fabc3349254 -r 71661061013d src/dialogs.c --- a/src/dialogs.c Wed Nov 29 07:28:15 2000 +0000 +++ b/src/dialogs.c Wed Nov 29 09:28:28 2000 +0000 @@ -1161,6 +1161,7 @@ b->nameentry = gtk_entry_new(); b->messentry = gtk_entry_new(); + /* Build OK Button */ button = picture_button(b->window, _("OK"), ok_xpm); @@ -1176,10 +1177,8 @@ /* Pounce as menu */ pounce_user_menu(b, vbox); - hbox = gtk_hbox_new(FALSE, 5); - - label = gtk_label_new(_("Buddy To Pounce:")); + label = gtk_label_new(_("Buddy:")); gtk_widget_show(label); gtk_widget_show(hbox); gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); @@ -1187,7 +1186,9 @@ gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, TRUE, 0); - label = gtk_label_new(_("Events:")); + label = gtk_label_new(_("Events")); + // gtk_misc_set_alignment(GTK_MISC(label), 0, 0); + // 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")); @@ -1208,7 +1209,9 @@ gtk_box_pack_start(GTK_BOX(vbox), b->p_unidle, FALSE, FALSE, 0); - label = gtk_label_new(_("Actions:")); + 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 /* And now the other stuff */ b->openwindow = gtk_check_button_new_with_label(_("Open IM window on pounce")); @@ -1225,12 +1228,12 @@ 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 to send:")); + label = gtk_label_new(_("Message:")); gtk_widget_show(label); + gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), b->messentry, FALSE, FALSE, 0); - /* And the boxes in the box */ gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);