From a78b6316ce1ff9d62eeb065fd2fdc87d606190cb Mon Sep 17 00:00:00 2001 From: Lucian Poston Date: Mon, 25 May 2020 19:27:03 -0500 Subject: [PATCH] Make GUIHelper toggle indicators bold --- ModMaker/Utility/GUIHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ModMaker/Utility/GUIHelper.cs b/ModMaker/Utility/GUIHelper.cs index f6d2059..c7b45df 100644 --- a/ModMaker/Utility/GUIHelper.cs +++ b/ModMaker/Utility/GUIHelper.cs @@ -8,8 +8,8 @@ namespace ModMaker.Utility { public static class GUIHelper { - public static string FormatOn = "◑".Color(RGBA.lime) + " - {0}"; - public static string FormatOff = "◐".Color(RGBA.red) + " - {0}"; + public static string FormatOn = "◑".Bold().Color(RGBA.lime) + " - {0}"; + public static string FormatOff = "◐".Bold().Color(RGBA.red) + " - {0}"; public static string GetToggleText(bool toggle, string text) {