diff --git a/WinformThemer.cs b/WinformThemer.cs index fd13f3c6..a4749fd9 100644 --- a/WinformThemer.cs +++ b/WinformThemer.cs @@ -22,6 +22,9 @@ namespace VRCX /// public static void SetGlobalTheme(int theme) { + if(currentTheme == theme) + return; + currentTheme = theme; List
forms = new List();