diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-26 21:55:40 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-26 22:06:17 +0800 |
commit | 5501047053f4da64a46dcd142a2f5e65ef4ece04 (patch) | |
tree | 2b743873df14a5532d0fa30eb1cdd8a4f3f05d66 /src | |
parent | f4acf00a36ad88246423a5fc9a2da4ecc8fcb8e6 (diff) | |
download | gsoc2013-empathy-5501047053f4da64a46dcd142a2f5e65ef4ece04.tar gsoc2013-empathy-5501047053f4da64a46dcd142a2f5e65ef4ece04.tar.gz gsoc2013-empathy-5501047053f4da64a46dcd142a2f5e65ef4ece04.tar.bz2 gsoc2013-empathy-5501047053f4da64a46dcd142a2f5e65ef4ece04.tar.lz gsoc2013-empathy-5501047053f4da64a46dcd142a2f5e65ef4ece04.tar.xz gsoc2013-empathy-5501047053f4da64a46dcd142a2f5e65ef4ece04.tar.zst gsoc2013-empathy-5501047053f4da64a46dcd142a2f5e65ef4ece04.zip |
always display the accounts dialog if we have to show a specific account
https://bugzilla.gnome.org/show_bug.cgi?id=660124
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-accounts-common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-accounts-common.c b/src/empathy-accounts-common.c index 8932fdbbc..fe123eec1 100644 --- a/src/empathy-accounts-common.c +++ b/src/empathy-accounts-common.c @@ -137,7 +137,8 @@ empathy_accounts_show_accounts_ui (TpAccountManager *manager, g_return_if_fail (TP_IS_ACCOUNT_MANAGER (manager)); g_return_if_fail (!account || TP_IS_ACCOUNT (account)); - if (empathy_accounts_has_non_salut_accounts (manager)) + if (empathy_accounts_has_non_salut_accounts (manager) || + account != NULL) { do_show_accounts_ui (manager, account, window_destroyed_cb); } |