From 6485a6f93a025a6f3217fde227d7d0fbb195693d Mon Sep 17 00:00:00 2001 From: leo Date: Wed, 21 Aug 2024 11:50:17 +0800 Subject: [PATCH] ux: use `JetBrains Mono` font for change status icon (#384) --- src/Views/ChangeStatusIcon.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Views/ChangeStatusIcon.cs b/src/Views/ChangeStatusIcon.cs index be828d70..06508638 100644 --- a/src/Views/ChangeStatusIcon.cs +++ b/src/Views/ChangeStatusIcon.cs @@ -91,8 +91,7 @@ namespace SourceGit.Views if (Change == null || Bounds.Width <= 0) return; - var fontFamily = this.FindResource("Fonts.Monospace") as FontFamily; - var typeface = new Typeface(fontFamily); + var typeface = new Typeface("fonts:SourceGit#JetBrains Mono"); IBrush background; string indicator;