diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-02-25 17:51:23 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-02-26 00:49:20 +0800 |
commit | d74946a42f83c5daaf0847011d722cf6138a4eed (patch) | |
tree | e2e4b41694d077421155b5c98989a0bb87758468 | |
parent | 8e24107b437f63d9b2ca93e0d5b7379ee87af98d (diff) | |
download | gsoc2013-empathy-d74946a42f83c5daaf0847011d722cf6138a4eed.tar gsoc2013-empathy-d74946a42f83c5daaf0847011d722cf6138a4eed.tar.gz gsoc2013-empathy-d74946a42f83c5daaf0847011d722cf6138a4eed.tar.bz2 gsoc2013-empathy-d74946a42f83c5daaf0847011d722cf6138a4eed.tar.lz gsoc2013-empathy-d74946a42f83c5daaf0847011d722cf6138a4eed.tar.xz gsoc2013-empathy-d74946a42f83c5daaf0847011d722cf6138a4eed.tar.zst gsoc2013-empathy-d74946a42f83c5daaf0847011d722cf6138a4eed.zip |
contact-widget: increase zoom on map
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index f4e7de4e1..daee82dc9 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -701,8 +701,10 @@ contact_widget_location_update (EmpathyContactWidget *information) gtk_container_add (GTK_CONTAINER (information->viewport_map), information->map_view_embed); - g_object_set (G_OBJECT (information->map_view), "show-license", FALSE, + g_object_set (G_OBJECT (information->map_view), + "show-license", FALSE, "scroll-mode", CHAMPLAIN_SCROLL_MODE_KINETIC, + "zoom-level", 10, NULL); layer = champlain_layer_new (); |