mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-26 05:41:45 +00:00
Things Mode: fixed an issue where the thing info panel did not show enum values for the first argument. Fixes #804
This commit is contained in:
parent
c6982ee2e1
commit
c751ad5a97
1 changed files with 2 additions and 2 deletions
|
@ -208,8 +208,8 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
|
||||
//mxd. Set argument value and label
|
||||
if (isarg0str) arg1.Text = arg0str;
|
||||
else SetArgumentText(act.Args[0], arg1, t.Args[0]);
|
||||
SetArgumentText(arginfo[1], arg2, t.Args[1]);
|
||||
else SetArgumentText(arginfo[0], arg1, t.Args[0]);
|
||||
SetArgumentText(arginfo[1], arg2, t.Args[1]);
|
||||
SetArgumentText(arginfo[2], arg3, t.Args[2]);
|
||||
SetArgumentText(arginfo[3], arg4, t.Args[3]);
|
||||
SetArgumentText(arginfo[4], arg5, t.Args[4]);
|
||||
|
|
Loading…
Reference in a new issue