diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-11-12 01:43:23 -0800 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-11-12 01:43:37 -0800 |
commit | 732507db2648e55202a3996c007fb1485703a39b (patch) | |
tree | e1d38baa5c2f8a04de87ff4de5eb2c5eecc6565d /app/qml/MapWindow.qml | |
parent | 8e070480a38956be76339cc6b81f3b0cb665cef5 (diff) |
tbtnavi: fix typo in getStartLongitude() qml call
Bug-AGL: SPEC-2880
Change-Id: I1035418f4f8e28c23336f3535ffda1487d232930
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/qml/MapWindow.qml')
-rw-r--r-- | app/qml/MapWindow.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/qml/MapWindow.qml b/app/qml/MapWindow.qml index 4da46b3..b9c0254 100644 --- a/app/qml/MapWindow.qml +++ b/app/qml/MapWindow.qml @@ -242,7 +242,7 @@ Item { // Request route info when map load finishes if (ruler) { ruler.initRouteInfo(); - ruler.setCurrentPosition(fileOperation.getStartLatitude(), fileOperation.getStartLongitute()); + ruler.setCurrentPosition(fileOperation.getStartLatitude(), fileOperation.getStartLongitude()); } } |