From a1a485f16e0f1720f2dcdf7ab03d52c29fe9e252 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 7 Jul 2025 13:46:01 +0200 Subject: Show custom fonts --- Map/Presentation/MapEditor.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Map/Presentation/MapEditor.swift') diff --git a/Map/Presentation/MapEditor.swift b/Map/Presentation/MapEditor.swift index 267492c..4116171 100644 --- a/Map/Presentation/MapEditor.swift +++ b/Map/Presentation/MapEditor.swift @@ -106,7 +106,7 @@ struct MapEditor: View { .background(Color.Theme.UI.background) .cornerRadius(5.0) GeometryReader { geometry in - ScrollView([.horizontal, .vertical]) { + ScrollView([.horizontal, .vertical], showsIndicators: false) { MapRenderView( document: $document, evolution: $selectedEvolution, onDragVertex: onDragVertex ).scaleEffect(zoom, anchor: .center).frame( -- cgit