C2024-007: Proms form font combo box debug mode displayed by command line arg in debug mode

This commit is contained in:
2024-04-16 08:13:33 -04:00
parent b8e8e80acb
commit 9d50f55f71
2 changed files with 20 additions and 0 deletions

View File

@@ -3202,6 +3202,14 @@ namespace VEPROMS
txtSearch.Visible = false;
lblLastChange.Visible = false;
btnStepRTF.Visible = false;
lblDummy.Visible = false;
}
else
{
// C2024-007: On Proms main form, allow for control of whether the FontMenu
// combo box is displayed. Only done when running in debugmode
cmbFont.Visible = Volian.Base.Library.VlnSettings.GetCommandFlag("FontMenu");
lblDummy.Visible = !Volian.Base.Library.VlnSettings.GetCommandFlag("FontMenu");
}
}