From e7572e5d410fbafa937350db161d3155a0883fc8 Mon Sep 17 00:00:00 2001 From: Totoo Date: Tue, 17 Mar 2026 14:46:05 +0100 Subject: [PATCH] transparent bg on map marker text (#3098) --- firmware/application/ui/ui_geomap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/application/ui/ui_geomap.cpp b/firmware/application/ui/ui_geomap.cpp index 30cdd034a..88402a8f5 100644 --- a/firmware/application/ui/ui_geomap.cpp +++ b/firmware/application/ui/ui_geomap.cpp @@ -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()); } }