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:
authorburivuh <burivuh@maps.me>2017-07-13 19:38:11 +0300
committerGitHub <noreply@github.com>2017-07-13 19:38:11 +0300
commitfee1a96e9dec6b8acbe9818c3d7f28ffa48c0638 (patch)
tree09fbdd82f7c18eadd3678914cf077737ed97abc0
parent1109e828b1c248378dd1cda0eab8c510419e3e6b (diff)
parent5919f7635613b54a8f366f6333d7721313a9143d (diff)
Merge pull request #6598 from alexzatsepin/fix-start-from-my-positionbeta-909
[android] Fixed starting from my position
-rw-r--r--android/src/com/mapswithme/maps/routing/RoutingController.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/android/src/com/mapswithme/maps/routing/RoutingController.java b/android/src/com/mapswithme/maps/routing/RoutingController.java
index 4f10e3ad33..233bfa735a 100644
--- a/android/src/com/mapswithme/maps/routing/RoutingController.java
+++ b/android/src/com/mapswithme/maps/routing/RoutingController.java
@@ -570,8 +570,7 @@ public class RoutingController implements TaxiManager.TaxiListener
@Override
public void onClick(DialogInterface dialog, int which)
{
- if (RoutingController.get().getStartPoint() == null)
- setStartFromMyPosition();
+ setStartFromMyPosition();
}
});
}