From edc2a3f05009a98ec3a948847548d1160ef9828a Mon Sep 17 00:00:00 2001 From: kua-agent Date: Fri, 28 Aug 2026 06:39:36 +0000 Subject: [PATCH] fix: MMD PDF wordmark in Controls/KillerDialog.cs --- Controls/KillerDialog.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Controls/KillerDialog.cs b/Controls/KillerDialog.cs index 9e38f14..1ce799a 100644 --- a/Controls/KillerDialog.cs +++ b/Controls/KillerDialog.cs @@ -82,7 +82,7 @@ namespace MmdPdf { var wm = new StackPanel { Orientation = Orientation.Horizontal }; var wmTb = new TextBlock { VerticalAlignment = VerticalAlignment.Center }; - wmTb.Inlines.Add(new System.Windows.Documents.Run("Killer") { FontFamily = UiKit.WordmarkFont, FontWeight = FontWeights.Normal, FontSize = 15, Foreground = R("TextBrush") }); + wmTb.Inlines.Add(new System.Windows.Documents.Run("MMD ") { FontFamily = UiKit.WordmarkFont, FontWeight = FontWeights.Normal, FontSize = 15, Foreground = R("TextBrush") }); wmTb.Inlines.Add(new System.Windows.Documents.Run("PDF") { FontFamily = UiKit.WordmarkFontPdf, FontWeight = FontWeights.Bold, FontSize = 19.5, Foreground = R("AccentLogo") }); wm.Children.Add(wmTb); // No DropShadowEffect on the text - it rasterizes and blurs the wordmark. Kept crisp. @@ -241,7 +241,7 @@ namespace MmdPdf if (title == "MmdPdf") { var wmTb = new TextBlock { VerticalAlignment = VerticalAlignment.Center }; - wmTb.Inlines.Add(new System.Windows.Documents.Run("Killer") { FontFamily = UiKit.WordmarkFont, FontWeight = FontWeights.Normal, FontSize = 15, Foreground = R("TextBrush") }); + wmTb.Inlines.Add(new System.Windows.Documents.Run("MMD ") { FontFamily = UiKit.WordmarkFont, FontWeight = FontWeights.Normal, FontSize = 15, Foreground = R("TextBrush") }); wmTb.Inlines.Add(new System.Windows.Documents.Run("PDF") { FontFamily = UiKit.WordmarkFontPdf, FontWeight = FontWeights.Bold, FontSize = 19.5, Foreground = R("AccentLogo") }); titleBar.Child = wmTb; } @@ -386,7 +386,7 @@ namespace MmdPdf titleBar.MouseLeftButtonDown += (_, e) => { if (e.ButtonState == MouseButtonState.Pressed) win.DragMove(); }; var wm = new StackPanel { Orientation = Orientation.Horizontal }; var wmTb = new TextBlock { VerticalAlignment = VerticalAlignment.Center }; - wmTb.Inlines.Add(new System.Windows.Documents.Run("Killer") { FontFamily = UiKit.WordmarkFont, FontWeight = FontWeights.Normal, FontSize = 15, Foreground = R("TextBrush") }); + wmTb.Inlines.Add(new System.Windows.Documents.Run("MMD ") { FontFamily = UiKit.WordmarkFont, FontWeight = FontWeights.Normal, FontSize = 15, Foreground = R("TextBrush") }); wmTb.Inlines.Add(new System.Windows.Documents.Run("PDF") { FontFamily = UiKit.WordmarkFontPdf, FontWeight = FontWeights.Bold, FontSize = 18, Foreground = R("AccentLogo") }); wm.Children.Add(wmTb); titleBar.Child = wm;