Lua console - use string.IsNullOrWhiteSpace when checking the command line box

This commit is contained in:
adelikat 2016-11-13 11:15:30 -06:00
parent 20fb060c65
commit ddf23e4c3a
1 changed files with 1 additions and 1 deletions

View File

@ -1309,7 +1309,7 @@ namespace BizHawk.Client.EmuHawk
string consoleBeforeCall = OutputBox.Text;
// TODO: Maybe make these try-catches more general
if (InputBox.Text != "")
if (!string.IsNullOrWhiteSpace(InputBox.Text))
{
LuaSandbox.Sandbox(null, () =>
{