Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Kunin <dkunin@mapswith.me>2013-09-23 11:22:09 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:02:22 +0300
commit17baa366bc98960f2b4989e6920fb5ceed553575 (patch)
tree12d49eab3dac15ae93cd41b25aaa4c143c4e042a
parent1a47ea191beb2624a6c0082349876d83ee0a795c (diff)
No update on position change fix.
-rw-r--r--android/YoPme/src/com/mapswithme/yopme/BackscreenActivity.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/android/YoPme/src/com/mapswithme/yopme/BackscreenActivity.java b/android/YoPme/src/com/mapswithme/yopme/BackscreenActivity.java
index 3c4286d08a..06155dc457 100644
--- a/android/YoPme/src/com/mapswithme/yopme/BackscreenActivity.java
+++ b/android/YoPme/src/com/mapswithme/yopme/BackscreenActivity.java
@@ -489,6 +489,9 @@ public class BackscreenActivity extends BSActivity implements LocationListener
public void onLocationChanged(Location l)
{
mLocation = l;
+
+ updateData();
+ invalidate();
}
@Override