diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-05 00:57:05 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-05 01:09:07 +0800 |
commit | 02e330c0418f6b59abe193171d7adc75739bd8a2 (patch) | |
tree | c82f6a116a577e65a4fa9a4dd70ad436b1e8d55e /src/empathy.c | |
parent | 475ab0143677586dd29be933795e88c35b4a2706 (diff) | |
download | gsoc2013-empathy-02e330c0418f6b59abe193171d7adc75739bd8a2.tar gsoc2013-empathy-02e330c0418f6b59abe193171d7adc75739bd8a2.tar.gz gsoc2013-empathy-02e330c0418f6b59abe193171d7adc75739bd8a2.tar.bz2 gsoc2013-empathy-02e330c0418f6b59abe193171d7adc75739bd8a2.tar.lz gsoc2013-empathy-02e330c0418f6b59abe193171d7adc75739bd8a2.tar.xz gsoc2013-empathy-02e330c0418f6b59abe193171d7adc75739bd8a2.tar.zst gsoc2013-empathy-02e330c0418f6b59abe193171d7adc75739bd8a2.zip |
Popup the assistant when starting only if there is *no* account configured
Diffstat (limited to 'src/empathy.c')
-rw-r--r-- | src/empathy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy.c b/src/empathy.c index 2dc62943e..f84791423 100644 --- a/src/empathy.c +++ b/src/empathy.c @@ -383,8 +383,8 @@ account_manager_ready_cb (GObject *source_object, empathy_idle_set_state (idle, TP_CONNECTION_PRESENCE_TYPE_AVAILABLE); /* Pop up the accounts dialog if it's needed (either when we don't have any - * non-salut accounts yet or when we haven't imported mc4 accounts yet */ - if (!empathy_accounts_has_non_salut_accounts (manager) + * accounts yet or when we haven't imported mc4 accounts yet */ + if (!empathy_accounts_has_accounts (manager) || !empathy_import_mc4_has_imported ()) show_accounts_ui (gdk_screen_get_default (), TRUE); |