From 9bbda4e2b9e883caa335f5896506e7ad0e93f2d4 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Tue, 9 Jun 2026 08:26:32 +0200 Subject: [PATCH] [chore:] removed font-path support (since it was never implemented) --- MainWindow.axaml | 34 +++++++++++++++++----------------- MainWindow.axaml.cs | 4 ++-- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/MainWindow.axaml b/MainWindow.axaml index 86443cb..6ecbca3 100644 --- a/MainWindow.axaml +++ b/MainWindow.axaml @@ -439,23 +439,23 @@ - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 2440d25..56b8f36 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -73,7 +73,7 @@ public partial class MainWindow : Window try { BtnWikiPath.Click += BtnWikiPath_Click; - BtnFontPath.Click += BtnFontPath_Click; + //BtnFontPath.Click += BtnFontPath_Click; BtnConfigPath.Click += BtnConfigPath_Click; } catch (Exception ex) @@ -404,7 +404,7 @@ public partial class MainWindow : Window if (folder == null || folder.Count == 0) return; var chosen = PathUtilities.NormalizeFileSystemPath(folder[0].Path); - TbFontPath.Text = chosen; + //TbFontPath.Text = chosen; Global._instance.font_path = chosen; Global.Save(); }