Fix getting selected script

This commit is contained in:
Fábio Ferreira 2020-10-15 09:06:41 +01:00
parent f43fbf666e
commit c0c2b5f955

View file

@ -25,7 +25,7 @@ namespace ScriptRunner
string[] Properties = new string[10]; string[] Properties = new string[10];
for (int index = 0; index <= 9; index++) for (int index = 0; index <= 9; index++)
{ {
Properties[index] = $"Script Path {index}"; Properties[index] = $"{index}";
} }
return Properties; return Properties;
} }