summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--platform/qt/app/mapwindow.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/platform/qt/app/mapwindow.cpp b/platform/qt/app/mapwindow.cpp
index bebf527cf2..0b453406f3 100644
--- a/platform/qt/app/mapwindow.cpp
+++ b/platform/qt/app/mapwindow.cpp
@@ -125,6 +125,12 @@ void MapWindow::keyPressEvent(QKeyEvent *ev)
m_map->setLayoutProperty("route", "line-join", "round");
m_map->setLayoutProperty("route", "line-cap", "round");
+ QVariantList lineDashArray;
+ lineDashArray.append(1);
+ lineDashArray.append(2);
+
+ m_map->setPaintProperty("route", "line-dasharray", lineDashArray);
+
// Markers at the beginning and end of the route
m_map->addImage("label-arrow", QImage(":label-arrow.svg"));
m_map->addImage("label-background", QImage(":label-background.svg"));