transparent bg on map marker text (#3098)

This commit is contained in:
Totoo
2026-03-17 14:46:05 +01:00
committed by GitHub
parent 50f1e51d7e
commit e7572e5d41
+1 -1
View File
@@ -265,7 +265,7 @@ void GeoMap::map_read_line_bin(ui::Color* buffer, uint16_t pixels) {
void GeoMap::draw_markers(Painter& painter) {
for (int i = 0; i < markerListLen; ++i) {
draw_marker_item(painter, markerList[i], markerList[i].color, markerList[i].color, Color::black());
draw_marker_item(painter, markerList[i], markerList[i].color, markerList[i].color, Color::magenta());
}
}