changeset 1169:71661061013d

[gaim-migrate @ 1179] Looks slightly better (Pounce Dialog). I still cant decide how it should look. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Wed, 29 Nov 2000 09:28:28 +0000
parents 8fabc3349254
children 16d748023b2b
files src/dialogs.c
diffstat 1 files changed, 10 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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);