[+] GUI style

This commit is contained in:
Clansty
2024-10-24 02:12:36 +08:00
parent e844164cf6
commit 906bdfa15e
2 changed files with 52 additions and 1 deletions

View File

@@ -151,6 +151,7 @@ namespace AquaMai
Patch(typeof(MessageHelper));
Patch(typeof(MusicDirHelper));
Patch(typeof(SharedInstances));
Patch(typeof(GuiSizes));
// Fixes
Patch(typeof(FixCharaCrash));
Patch(typeof(BasicFix));
@@ -187,5 +188,11 @@ namespace AquaMai
MelonLogger.Msg(Locale.Loaded);
}
public override void OnGUI()
{
GuiSizes.SetupStyles();
base.OnGUI();
}
}
}