Lua console - use string.IsNullOrWhiteSpace when checking the command line box
This commit is contained in:
parent
20fb060c65
commit
ddf23e4c3a
|
@ -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, () =>
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue