From 1ed999f3c8db28ebda7bdb6062b3f7a0f808108d Mon Sep 17 00:00:00 2001 From: kua-agent Date: Fri, 28 Aug 2026 06:26:56 +0000 Subject: [PATCH 1/2] fix: show the MMD PDF wordmark instead of the upstream one in Controls/DialogChrome.cs --- Controls/DialogChrome.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Controls/DialogChrome.cs b/Controls/DialogChrome.cs index e125eda..0e97158 100644 --- a/Controls/DialogChrome.cs +++ b/Controls/DialogChrome.cs @@ -67,9 +67,9 @@ namespace MmdPdf int kp = fullTitle?.IndexOf("MmdPdf", StringComparison.Ordinal) ?? -1; if (kp >= 0) { - // Killer + PDF in one TextBlock so the two sizes share a baseline (cohesive wordmark). + // MMD + PDF in one TextBlock so the two sizes share a baseline (cohesive wordmark). var logoTb = new TextBlock { VerticalAlignment = VerticalAlignment.Center }; - logoTb.Inlines.Add(new System.Windows.Documents.Run("Killer") { FontFamily = wordmark, FontWeight = FontWeights.Normal, FontSize = 16, Foreground = primary }); + logoTb.Inlines.Add(new System.Windows.Documents.Run("MMD ") { FontFamily = wordmark, FontWeight = FontWeights.Normal, FontSize = 16, Foreground = primary }); logoTb.Inlines.Add(new System.Windows.Documents.Run("PDF") { FontFamily = wordmarkPdf, FontWeight = FontWeights.Bold, FontSize = 20.8, Foreground = logo }); sp.Children.Add(logoTb); string after = fullTitle![(kp + "MmdPdf".Length)..]; -- 2.54.0 From 19791f1aca044ea77e6af1a86227959eeb22695f Mon Sep 17 00:00:00 2001 From: kua-agent Date: Fri, 28 Aug 2026 06:26:59 +0000 Subject: [PATCH 2/2] fix: show the MMD PDF wordmark instead of the upstream one in MainWindow.xaml --- MainWindow.xaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MainWindow.xaml b/MainWindow.xaml index aff8813..183c39a 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -1180,9 +1180,11 @@ + + -- 2.54.0