# HG changeset patch # User Luke Schierer # Date 1068072404 0 # Node ID 3a51b301a805b17acfd26fbba73010d25c85bbf6 # Parent d3400dadc59428d2f539744925cfe6e18824fddb [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 diff -r d3400dadc594 -r 3a51b301a805 plugins/contact_priority.c --- 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);