mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-06-28 12:09:15 +02:00
Always show the POI labels in zooms > 25
This commit is contained in:
@ -435,7 +435,8 @@ void RasterTile::processPoints(QList<TextItem*> &textItems)
|
||||
? 0 : &(point.label.text());
|
||||
const QImage *img = style.img().isNull() ? 0 : &style.img();
|
||||
const QFont *fnt = poi
|
||||
? poiFont(style.textFontSize()) : font(style.textFontSize());
|
||||
? poiFont(_zoom > 25 ? Style::Normal : style.textFontSize())
|
||||
: font(style.textFontSize());
|
||||
const QColor *color = style.textColor().isValid()
|
||||
? &style.textColor() : &textColor;
|
||||
|
||||
|
Reference in New Issue
Block a user