aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-09-26 21:55:40 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-09-26 22:06:17 +0800
commit5501047053f4da64a46dcd142a2f5e65ef4ece04 (patch)
tree2b743873df14a5532d0fa30eb1cdd8a4f3f05d66 /src
parentf4acf00a36ad88246423a5fc9a2da4ecc8fcb8e6 (diff)
downloadgsoc2013-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.c3
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);
}