From 879739b32cdd24c0c28f559f62c58e7f23a195e2 Mon Sep 17 00:00:00 2001 From: Rune Olsen Date: Wed, 29 Jul 2026 12:08:22 +0200 Subject: [PATCH] Switch PDF export page size from US Letter to A4 --- oAI/Services/ConversationExportService.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oAI/Services/ConversationExportService.swift b/oAI/Services/ConversationExportService.swift index cdd384d..ea886c1 100644 --- a/oAI/Services/ConversationExportService.swift +++ b/oAI/Services/ConversationExportService.swift @@ -145,7 +145,7 @@ enum ConversationExportService { defer { try? FileManager.default.removeItem(at: tempURL) } let printInfo = NSPrintInfo() - printInfo.paperSize = NSSize(width: 612, height: 792) // US Letter + printInfo.paperSize = NSSize(width: 595, height: 842) // A4 printInfo.topMargin = 36 printInfo.bottomMargin = 36 printInfo.leftMargin = 36