From 83d6c656e3500eb246495d28002b80fa57fee20f Mon Sep 17 00:00:00 2001 From: Dustin Carlino Date: Thu, 16 Feb 2023 16:11:40 +0000 Subject: [PATCH] Use the same outline thickness for roads and intersections. [rebuild] [release] --- map_gui/src/render/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map_gui/src/render/map.rs b/map_gui/src/render/map.rs index 4c4d06a126..982be52b07 100644 --- a/map_gui/src/render/map.rs +++ b/map_gui/src/render/map.rs @@ -307,7 +307,7 @@ impl DrawMap { unzoomed_pieces.push(( zorder + outline_z_offset, outline_color.into(), - pl.make_polygons(0.5 * outline_thickness).into(), + pl.make_polygons(outline_thickness).into(), )); } }