changeset 7439:3a51b301a805

[gaim-migrate @ 8044] "The labels for the preferences in the contact priority plugin have the standard alignment "center". This doesn't look nice. I saw, that other preferences in the preference window are aligned left/up. The patch changes the alignment to left/up." -- Bjoern Voigt being consistent is a good thing :-)"The labels for the preferences in the contact priority plugin have the standard alignment "center". This doesn't look nice. I saw, that other preferences in the preference window are aligned left/up. The patch changes the alignment to left/up." -- Bjoern Voigt being consistent is a good thing :-)"The labels for the preferences in the contact priority plugin have the standard alignment "center". This doesn't look nice. I saw, that other preferences in the preference window are aligned left/up. The patch changes the alignment to left/up." -- Bjoern Voigt being consistent is a good thing :-)"The labels for the preferences in the contact priority plugin have the standard alignment "center". This doesn't look nice. I saw, that other preferences in the preference window are aligned left/up. The patch changes the alignment to left/up." -- Bjoern Voigt being consistent is a good thing :-)"The labels for the preferences in the contact priority plugin have the standard alignment "center". This doesn't look nice. I saw, that other preferences in the preference window are aligned left/up. The patch changes the alignment to left/up." -- Bjoern Voigt being consistent is a good thing :-)"The labels for the preferences in the contact priority plugin have the standard alignment "center". This doesn't look nice. I saw, that other preferences in the preference window are aligned left/up. The patch changes the alignment to left/up." -- Bjoern Voigt being consistent is a good thing :-)"The labels for the preferences in the contact priority plugin have the standard alignment "center". This doesn't look nice. I saw, that other preferences in the preference window are aligned left/up. The patch changes the alignment to left/up." -- Bjoern Voigt being consistent is a good thing :-)"The labels for the preferences in the contact priority plugin have the standard alignment "center". This doesn't look nice. I saw, that other preferences in the preference window are aligned left/up. The patch changes the alignment to left/up." -- Bjoern Voigt being consistent is a good thing :-)"The labels for the preferences in the contact priority plugin have the standard alignment "center". This doesn't look nice. I saw, that other preferences in the preference window are aligned left/up. The patch changes the alignment to left/up." -- Bjoern Voigt being consistent is a good thing :-) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Wed, 05 Nov 2003 22:46:44 +0000
parents d3400dadc594
children 8c0527c91a92
files plugins/contact_priority.c
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/contact_priority.c	Wed Nov 05 22:44:46 2003 +0000
+++ b/plugins/contact_priority.c	Wed Nov 05 22:46:44 2003 +0000
@@ -91,6 +91,7 @@
 	label = gtk_label_new_with_mnemonic(_("Buddy is offline:"));
 	gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
 	gtk_size_group_add_widget(sg, label);
+	gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
 
 	adj = gtk_adjustment_new(offline, -20, 20, 1, 1, 1);
 	spin = gtk_spin_button_new((GtkAdjustment *)adj, 1, 0);
@@ -104,6 +105,7 @@
 	label = gtk_label_new_with_mnemonic(_("Buddy is away:"));
 	gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
 	gtk_size_group_add_widget(sg, label);
+	gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
 
 	adj = gtk_adjustment_new(away, -20, 20, 1, 1, 1);
 	spin = gtk_spin_button_new((GtkAdjustment *)adj, 1, 0);
@@ -117,6 +119,7 @@
 	label = gtk_label_new_with_mnemonic(_("Buddy is idle:"));
 	gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0);
 	gtk_size_group_add_widget(sg, label);
+	gtk_misc_set_alignment(GTK_MISC(label), 0, 0);
 
 	adj = gtk_adjustment_new(idle, -20, 20, 1, 1, 1);
 	spin = gtk_spin_button_new((GtkAdjustment *)adj, 1, 0);