diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-02-15 19:43:38 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-02-16 21:09:19 +0800 |
commit | 9e91ccd4f78115f3a57a1d678ef10f6325aeaa1c (patch) | |
tree | 70a46cd68465066ec930ba80ea6d2b7789b3fec5 /src/empathy-account-assistant.c | |
parent | 540ebef23ea20077e8b5d275c6114ef8bf15e05e (diff) | |
download | gsoc2013-empathy-9e91ccd4f78115f3a57a1d678ef10f6325aeaa1c.tar gsoc2013-empathy-9e91ccd4f78115f3a57a1d678ef10f6325aeaa1c.tar.gz gsoc2013-empathy-9e91ccd4f78115f3a57a1d678ef10f6325aeaa1c.tar.bz2 gsoc2013-empathy-9e91ccd4f78115f3a57a1d678ef10f6325aeaa1c.tar.lz gsoc2013-empathy-9e91ccd4f78115f3a57a1d678ef10f6325aeaa1c.tar.xz gsoc2013-empathy-9e91ccd4f78115f3a57a1d678ef10f6325aeaa1c.tar.zst gsoc2013-empathy-9e91ccd4f78115f3a57a1d678ef10f6325aeaa1c.zip |
Pass EmpathyConnectionManagers to the import widget
The widget doesn't have to prepare EmpathyConnectionManagers itself any more
and so can populate its treeview right away. By doing so it will request a
more decent size and so the dialog will actually display the accounts which
can be imported without forcing user to resize it.
https://bugzilla.gnome.org/show_bug.cgi?id=670201
Diffstat (limited to 'src/empathy-account-assistant.c')
-rw-r--r-- | src/empathy-account-assistant.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-account-assistant.c b/src/empathy-account-assistant.c index 3c31b81ba..e4ee048b5 100644 --- a/src/empathy-account-assistant.c +++ b/src/empathy-account-assistant.c @@ -737,7 +737,8 @@ account_assistant_build_import_page (EmpathyAccountAssistant *self) gtk_widget_show (w); /* NOTE: this is hardcoded as we support pidgin only */ - iw = empathy_import_widget_new (EMPATHY_IMPORT_APPLICATION_PIDGIN); + iw = empathy_import_widget_new (EMPATHY_IMPORT_APPLICATION_PIDGIN, + priv->connection_mgrs); import = empathy_import_widget_get_widget (iw); gtk_container_add (GTK_CONTAINER (w), import); gtk_widget_show (import); |