1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-05-09 20:57:45 +02:00

Also show the depths for underwater rocks

This commit is contained in:
Martin Tůma 2025-05-08 15:31:36 +02:00
parent 16d5e656bf
commit e43c4b44f4

View File

@ -447,7 +447,7 @@ MapData::Point::Point(uint type, const Coordinates &c, const Attributes &attr,
if (ok && clr > 0)
_label = QString::fromUtf8("\xE2\x86\x95") + UNIT_SPACE
+ QString::number(clr) + UNIT_SPACE + hUnits(HUNI);
} else if (type == OBSTRN || type == WRECKS) {
} else if (type == OBSTRN || type == WRECKS || type == UWTROC) {
double depth = _attr.value(VALSOU).toDouble(&ok);
if (ok && _label.isEmpty())
_label = QString::number(depth);