From 1ec7f2c6deb64f5b13b32fae2bf74ae2d8aaaabb Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 9 Jul 2025 08:34:19 +0200 Subject: Account for CRLF/CR/LF. Lex note text. Use Wmap Parser for renderer. --- Map/Data/MapDocument.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Map/Data') diff --git a/Map/Data/MapDocument.swift b/Map/Data/MapDocument.swift index 95fcfde..6cc84d7 100644 --- a/Map/Data/MapDocument.swift +++ b/Map/Data/MapDocument.swift @@ -69,7 +69,7 @@ struct MapDocument: FileDocument { @MainActor func exportAsImage(withEvolution selectedEvolution: StageType) -> NSImage? { let renderView = MapRenderView( - document: .constant(self), + entities: self.parsed, evolution: .constant(selectedEvolution)) let renderer = ImageRenderer(content: renderView) -- cgit