diff options
author | Travis Reitter <treitter@gmail.com> | 2010-02-27 04:08:27 +0800 |
---|---|---|
committer | Travis Reitter <treitter@gmail.com> | 2010-02-27 08:59:18 +0800 |
commit | d5ae581b39fd3532e8a8e90d383164039b2fafc7 (patch) | |
tree | 381aac150c6d88059b5878cb504daa29743263a0 /src | |
parent | 08cf375e793f4f9255e10ca61850af279a07ce1a (diff) | |
download | gsoc2013-empathy-d5ae581b39fd3532e8a8e90d383164039b2fafc7.tar gsoc2013-empathy-d5ae581b39fd3532e8a8e90d383164039b2fafc7.tar.gz gsoc2013-empathy-d5ae581b39fd3532e8a8e90d383164039b2fafc7.tar.bz2 gsoc2013-empathy-d5ae581b39fd3532e8a8e90d383164039b2fafc7.tar.lz gsoc2013-empathy-d5ae581b39fd3532e8a8e90d383164039b2fafc7.tar.xz gsoc2013-empathy-d5ae581b39fd3532e8a8e90d383164039b2fafc7.tar.zst gsoc2013-empathy-d5ae581b39fd3532e8a8e90d383164039b2fafc7.zip |
Don't create some extra "ghost" account if we're creating our first account and we change protocols in the protocol combo box.
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-accounts-dialog.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index e34903f12..65019142e 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -625,8 +625,17 @@ accounts_dialog_protocol_changed_cb (GtkWidget *widget, /* We are creating a new widget to replace the current one, don't ask * confirmation to the user. */ priv->force_change_row = TRUE; + + /* We'll update the selection after we create the new account widgets; + * updating it right now causes problems for the # of accounts = zero case */ + g_signal_handlers_block_by_func (selection, + accounts_dialog_model_selection_changed, dialog); + gtk_list_store_remove (GTK_LIST_STORE (model), &iter); + g_signal_handlers_unblock_by_func (selection, + accounts_dialog_model_selection_changed, dialog); + accounts_dialog_setup_ui_to_add_account (dialog); /* Restore "account" and "password" parameters in the new widget */ |