1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-31 09:05:14 +01:00

Do not outline countour height entries

This commit is contained in:
Martin Tůma 2023-04-01 12:04:21 +02:00
parent ab2f8d8350
commit c114383c85

View File

@ -357,7 +357,8 @@ void RasterTile::processStreetNames(QList<TextItem*> &textItems)
? &style.textColor() : 0;
TextPathItem *item = new TextPathItem(poly.points,
&poly.label.text(), _rect, fnt, color, &haloColor);
&poly.label.text(), _rect, fnt, color, Style::isContourLine(poly.type)
? 0 : &haloColor);
if (item->isValid() && !item->collides(textItems))
textItems.append(item);
else