From 64dc54bb70eac6f8cb3e03b01918d08336cf7cee Mon Sep 17 00:00:00 2001 From: Michael Babienco Date: Tue, 24 Feb 2026 09:23:30 +0900 Subject: [PATCH] Fix spacing of console line --- src/ViewModels/MainViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewModels/MainViewModel.cs b/src/ViewModels/MainViewModel.cs index 9ecf926..600baaf 100644 --- a/src/ViewModels/MainViewModel.cs +++ b/src/ViewModels/MainViewModel.cs @@ -44,7 +44,7 @@ class MainViewModel : BaseViewModel, IFontResolver var quotes = Constants.GetQuotes(); Random random = new Random(); var quoteIndex = random.Next(0, quotes.Length); - _createPDFLog = "----- MayShow v" + Constants.AppVersion + "------" + Environment.NewLine; + _createPDFLog = "----- MayShow v" + Constants.AppVersion + " ------" + Environment.NewLine; _createPDFLog += quotes[quoteIndex] + Environment.NewLine; _createPDFLog += "---------------------------------------" + Environment.NewLine; _createPDFLog += "Ready to create PDF!";