re-checkin

This commit is contained in:
John Jenko 2021-02-19 21:43:58 +00:00
parent 00f53b5469
commit a05f822fa1

View File

@ -2165,15 +2165,6 @@ namespace Volian.Controls.Library
case Keys.Oemplus: // the plus on the keyboard (not the key pad)
e.Handled = true;
break;
// B2020-018: Oemcomma & OemPeriod are short cut keys for changing the font size - only do this if in a table:
case Keys.Oemcomma: // '<'
if (_MyItemInfo != null && _MyItemInfo.IsTable && !IsRoTable) SetFontSize(false);
e.Handled = true;
break;
case Keys.OemPeriod: // '>'
if (_MyItemInfo != null && _MyItemInfo.IsTable && !IsRoTable) SetFontSize(true);
e.Handled = true;
break;
}
}
else