summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mobile-widgets/qml/MapWidget.qml11
1 files changed, 2 insertions, 9 deletions
diff --git a/mobile-widgets/qml/MapWidget.qml b/mobile-widgets/qml/MapWidget.qml
index a5d7b652f..542091d4a 100644
--- a/mobile-widgets/qml/MapWidget.qml
+++ b/mobile-widgets/qml/MapWidget.qml
@@ -69,17 +69,10 @@ Item {
ParallelAnimation {
id: mapAnimation
CoordinateAnimation {
- target: map
- property: "center"
- to: map.newCenter
- duration: 2000
+ target: map; property: "center"; to: map.newCenter; duration: 2000;
}
NumberAnimation {
- target: map
- property: "zoomLevel"
- to: map.newZoom
- duration: 3000
- easing.type: Easing.InCubic
+ target: map; property: "zoomLevel"; to: map.newZoom; duration: 3000; easing.type: Easing.InCubic;
}
}