Mercurial > pidgin
comparison src/dialogs.c @ 6352:3381f1a85d8f
[gaim-migrate @ 6851]
When being added to someone's buddy list and clicking Authorize, and then
clicking the Add button on the proceeding dialog to add them to your list,
the account drop-down menu would always show the first signed-on account,
instead of the one that was added that you authorized. Did that make sense?
Well, it's fixed either way.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Fri, 01 Aug 2003 03:43:47 +0000 |
| parents | 7a34722b3164 |
| children | 8f94cce8faa5 |
comparison
equal
deleted
inserted
replaced
| 6351:ffb1b5003772 | 6352:3381f1a85d8f |
|---|---|
| 961 /* Set up stuff for the account box */ | 961 /* Set up stuff for the account box */ |
| 962 label = gtk_label_new(_("Add To")); | 962 label = gtk_label_new(_("Add To")); |
| 963 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); | 963 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); |
| 964 gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 3, 4); | 964 gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 3, 4); |
| 965 | 965 |
| 966 a->account = gaim_gtk_account_option_menu_new(NULL, FALSE, | 966 a->account = gaim_gtk_account_option_menu_new( |
| 967 gaim_connection_get_account(gc), FALSE, | |
| 967 G_CALLBACK(addbuddy_select_account), a); | 968 G_CALLBACK(addbuddy_select_account), a); |
| 968 | 969 |
| 969 gtk_table_attach_defaults(GTK_TABLE(table), a->account, 1, 2, 3, 4); | 970 gtk_table_attach_defaults(GTK_TABLE(table), a->account, 1, 2, 3, 4); |
| 970 | 971 |
| 971 /* End of account box */ | 972 /* End of account box */ |
