From 0a86781d61842afaae7d89499ce2ee86c8be78c0 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 5 May 2025 21:14:35 -0400 Subject: [PATCH] Clarification on some options --- CHANGELIST.md | 1 + MPF.Frontend/Options.cs | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index 1d9653fb..604c6684 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -45,6 +45,7 @@ - Close the log archive, if it exists - Support checking Redumper DAT from zip; add tests - Add Check warnings around overwriting and parsing +- Clarification on some options ### 3.3.0 (2025-01-03) diff --git a/MPF.Frontend/Options.cs b/MPF.Frontend/Options.cs index 6b83150f..86486778 100644 --- a/MPF.Frontend/Options.cs +++ b/MPF.Frontend/Options.cs @@ -86,6 +86,7 @@ namespace MPF.Frontend /// /// Enable purple mode for UI elements /// + /// This is a hidden setting public bool EnablePurpMode { get { return GetBooleanSetting(Settings, "EnablePurpMode", false); } @@ -95,6 +96,7 @@ namespace MPF.Frontend /// /// Custom color setting /// + /// This is a hidden setting public string? CustomBackgroundColor { get { return GetStringSetting(Settings, "CustomBackgroundColor", null); } @@ -104,6 +106,7 @@ namespace MPF.Frontend /// /// Custom color setting /// + /// This is a hidden setting public string? CustomTextColor { get { return GetStringSetting(Settings, "CustomTextColor", null); } @@ -155,7 +158,7 @@ namespace MPF.Frontend } /// - /// Default output path for dumps + /// Show the debug menu item /// /// This is a hidden setting public bool ShowDebugViewMenuItem