From 3fb3d2bf05f3cb2f5f5c8a282ad44a4365b4a946 Mon Sep 17 00:00:00 2001 From: CodingNinja Date: Thu, 31 Oct 2024 16:17:37 +0800 Subject: [PATCH] Fix theme switch button icon not correct in certain cases --- IPConfig/Helpers/ThemeManager.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IPConfig/Helpers/ThemeManager.cs b/IPConfig/Helpers/ThemeManager.cs index b261217..0cdfaf6 100644 --- a/IPConfig/Helpers/ThemeManager.cs +++ b/IPConfig/Helpers/ThemeManager.cs @@ -60,6 +60,8 @@ public static void UpdateSkin(SkinType? skin) if (actualSkinType == CurrentSkinType) { + CurrentSkinTypeMode = skin; + return; }