From 53ace440c58c68cef2e30c0a34b3b2409d135667 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Wed, 14 May 2025 08:28:06 +0200 Subject: [PATCH] Fishing stakes non-directional line --- src/map/IMG/style.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/map/IMG/style.cpp b/src/map/IMG/style.cpp index b3ba0c46..27b50572 100644 --- a/src/map/IMG/style.cpp +++ b/src/map/IMG/style.cpp @@ -496,7 +496,8 @@ void Style::defaultLineStyle(qreal ratio) _lines[0x10401] = Line(QImage(":/marine/cable.png")); _lines[0x10402] = Line(QImage(":/marine/pipeline.png")); _lines[0x10403] = Line(QPen(QColor(0xe7, 0x28, 0xe7), 2, Qt::DotLine)); - _lines[0x10404] = Line(QImage(":/marine/fishing-farm-line.png")); + _lines[0x10404] = Line(QPen(QColor(0, 0, 0), 1, Qt::DashLine)); + _lines[0x110404] = Line(QImage(":/marine/fishing-farm-line.png")); _lines[0x10405] = Line(QPen(QColor(0xe7, 0x28, 0xe7), 1, Qt::DashLine)); _lines[0x110405] = Line(QImage(":/marine/pipeline-area-line.png")); _lines[0x10406] = Line(QPen(QColor(0xe7, 0x28, 0xe7), 1, Qt::DashLine));