diff options
Diffstat (limited to 'libempathy-gtk/empathy-contact-widget.c')
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index f55e81405..f4e7de4e1 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -552,6 +552,7 @@ contact_widget_location_update (EmpathyContactWidget *information) }; int i; const gchar *skey; + gboolean display_map = FALSE; if (!(information->flags & EMPATHY_CONTACT_WIDGET_SHOW_LOCATION)) { @@ -666,20 +667,30 @@ contact_widget_location_update (EmpathyContactWidget *information) row++; } - if (row == 0) +#if HAVE_LIBCHAMPLAIN + if (has_position && + !(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) + { + /* Cannot be displayed in tooltips until Clutter-Gtk can deal with such + * windows */ + display_map = TRUE; + } +#endif + + if (row > 0) + { + /* We can display some fields */ + gtk_widget_show (information->table_location); + } + else if (!display_map) { + /* Can't display either fields or map */ gtk_widget_hide (information->vbox_location); return; } - gtk_widget_show (information->table_location); - #if HAVE_LIBCHAMPLAIN - /* Cannot be displayed in tooltips until Clutter-Gtk can deal with such - * windows - */ - if (has_position && - !(information->flags & EMPATHY_CONTACT_WIDGET_FOR_TOOLTIP)) + if (display_map) { ClutterActor *marker; ChamplainLayer *layer; |