fix: remove the last upstream wordmark from dialogs, About and every language file #6
@@ -82,7 +82,7 @@ namespace MmdPdf
|
|||||||
{
|
{
|
||||||
var wm = new StackPanel { Orientation = Orientation.Horizontal };
|
var wm = new StackPanel { Orientation = Orientation.Horizontal };
|
||||||
var wmTb = new TextBlock { VerticalAlignment = VerticalAlignment.Center };
|
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") });
|
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);
|
wm.Children.Add(wmTb);
|
||||||
// No DropShadowEffect on the text - it rasterizes and blurs the wordmark. Kept crisp.
|
// No DropShadowEffect on the text - it rasterizes and blurs the wordmark. Kept crisp.
|
||||||
@@ -241,7 +241,7 @@ namespace MmdPdf
|
|||||||
if (title == "MmdPdf")
|
if (title == "MmdPdf")
|
||||||
{
|
{
|
||||||
var wmTb = new TextBlock { VerticalAlignment = VerticalAlignment.Center };
|
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") });
|
wmTb.Inlines.Add(new System.Windows.Documents.Run("PDF") { FontFamily = UiKit.WordmarkFontPdf, FontWeight = FontWeights.Bold, FontSize = 19.5, Foreground = R("AccentLogo") });
|
||||||
titleBar.Child = wmTb;
|
titleBar.Child = wmTb;
|
||||||
}
|
}
|
||||||
@@ -386,7 +386,7 @@ namespace MmdPdf
|
|||||||
titleBar.MouseLeftButtonDown += (_, e) => { if (e.ButtonState == MouseButtonState.Pressed) win.DragMove(); };
|
titleBar.MouseLeftButtonDown += (_, e) => { if (e.ButtonState == MouseButtonState.Pressed) win.DragMove(); };
|
||||||
var wm = new StackPanel { Orientation = Orientation.Horizontal };
|
var wm = new StackPanel { Orientation = Orientation.Horizontal };
|
||||||
var wmTb = new TextBlock { VerticalAlignment = VerticalAlignment.Center };
|
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") });
|
wmTb.Inlines.Add(new System.Windows.Documents.Run("PDF") { FontFamily = UiKit.WordmarkFontPdf, FontWeight = FontWeights.Bold, FontSize = 18, Foreground = R("AccentLogo") });
|
||||||
wm.Children.Add(wmTb);
|
wm.Children.Add(wmTb);
|
||||||
titleBar.Child = wm;
|
titleBar.Child = wm;
|
||||||
|
|||||||
Reference in New Issue
Block a user