From 83e3d4861ac129096e5dca73ac66b89646eea814 Mon Sep 17 00:00:00 2001
From: DamianKomdeur <77113617+DamianKomdeur@users.noreply.github.com>
Date: Mon, 2 Dec 2024 12:19:49 +0100
Subject: [PATCH] Small FIx

---
 PuzzlePlayer/PuzzlePlayer.cs | 2 +-
 PuzzlePlayer/SettingForm.cs  | 6 +-----
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/PuzzlePlayer/PuzzlePlayer.cs b/PuzzlePlayer/PuzzlePlayer.cs
index 9f617b4..c126171 100644
--- a/PuzzlePlayer/PuzzlePlayer.cs
+++ b/PuzzlePlayer/PuzzlePlayer.cs
@@ -10,7 +10,7 @@ namespace PuzzlePlayer_Namespace
     {
         internal static void Main(string[] args)
         {
-            Application.Run(new PuzzleForm(new Binary()));
+            Application.Run(new MainForm());
         }
     }
 
diff --git a/PuzzlePlayer/SettingForm.cs b/PuzzlePlayer/SettingForm.cs
index 1030962..d1f391b 100644
--- a/PuzzlePlayer/SettingForm.cs
+++ b/PuzzlePlayer/SettingForm.cs
@@ -183,11 +183,7 @@ namespace PuzzlePlayer_Namespace
                 control.BackColor = primaryColor;
             }
 
-            try
-            {
-                control.Font = mainFont;
-            }
-            catch (Exception ex) { }
+            control.Font = mainFont;
 
             foreach (Control childControl in control.Controls)
             {
-- 
GitLab