VirtualPads - style console pads differently

This commit is contained in:
adelikat 2020-03-22 19:34:00 -05:00
parent bcc4fb0bab
commit 7f2e1438ba
1 changed files with 6 additions and 0 deletions

View File

@ -51,6 +51,12 @@ namespace BizHawk.Client.EmuHawk
Size = UIHelper.Scale(_schema.Size);
MaximumSize = UIHelper.Scale(_schema.Size);
PadBox.Text = _schema.DisplayName;
if (_schema.IsConsole)
{
this.PadBox.ForeColor = SystemColors.HotTrack;
}
foreach (var button in _schema.Buttons)
{
switch (button.Type)