From ceb1654ced23d545e1b2437751a70113cb1a2d2a Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Fri, 11 Jul 2025 10:52:37 +0200 Subject: Improve text rendering and component detection. --- Map/Business/WmapParser/Parser.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Map/Business/WmapParser') diff --git a/Map/Business/WmapParser/Parser.swift b/Map/Business/WmapParser/Parser.swift index 86c36ef..7c87150 100644 --- a/Map/Business/WmapParser/Parser.swift +++ b/Map/Business/WmapParser/Parser.swift @@ -46,7 +46,7 @@ extension Wmap { entities.append(entity) switch entity { case .vertex(let vertex): - vertexLabels.insert(vertex.label) + vertexLabels.insert(vertex.label.lowercased()) default: break } -- cgit