1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-17 03:30:26 +02:00

Fix scripting bug where missing parameters gave syntax error

In these cases the default parameters should have been used instead.
Also the Help command now gives Help on Help by default.
This commit is contained in:
James Crook
2017-12-20 19:58:05 +00:00
parent b6138b1968
commit a7960864dd
4 changed files with 7 additions and 2 deletions

View File

@@ -245,6 +245,8 @@ bool Shuttle::TransferString( const wxString & Name, wxString & strValue, const
{
strValue = mValueString;
}
else
return false;
}
else
{