1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 11:45:53 +01:00

Fixed broken waypoint settings

This commit is contained in:
Martin Tůma 2023-02-10 00:16:16 +01:00
parent e6bc548524
commit b73ad9772f
2 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ PathItem *MapView::addRoute(const Route &route)
ri->setVisible(_showRoutes); ri->setVisible(_showRoutes);
ri->showWaypoints(_showRouteWaypoints); ri->showWaypoints(_showRouteWaypoints);
ri->showWaypointLabels(_showWaypointLabels); ri->showWaypointLabels(_showWaypointLabels);
ri->showWaypointIcons(_showWaypointLabels); ri->showWaypointIcons(_showWaypointIcons);
ri->setDigitalZoom(_digitalZoom); ri->setDigitalZoom(_digitalZoom);
ri->setMarkerColor(_markerColor); ri->setMarkerColor(_markerColor);
ri->showMarker(_showMarkers); ri->showMarker(_showMarkers);

View File

@ -74,7 +74,7 @@ WaypointItem::WaypointItem(const Waypoint &waypoint, Map *map,
QGraphicsItem *parent) : GraphicsItem(parent) QGraphicsItem *parent) : GraphicsItem(parent)
{ {
_waypoint = waypoint; _waypoint = waypoint;
_showLabel = true; _showLabel = false;
_showIcon = false; _showIcon = false;
_size = 8; _size = 8;
_color = Qt::black; _color = Qt::black;