mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 01:22:18 +00:00
Fix another error in SRB2 linedef edit form
This commit is contained in:
parent
27d7032f6b
commit
a6d0531c95
1 changed files with 4 additions and 1 deletions
|
@ -293,7 +293,10 @@ namespace CodeImp.DoomBuilder.Windows
|
||||||
executordelay.Text = UniFields.GetInteger(fl.Fields, "executordelay", 0).ToString();
|
executordelay.Text = UniFields.GetInteger(fl.Fields, "executordelay", 0).ToString();
|
||||||
|
|
||||||
// Action
|
// Action
|
||||||
action.Value = fl.Action;
|
if (action.Value != fl.Action)
|
||||||
|
action.Value = fl.Action;
|
||||||
|
else
|
||||||
|
action_ValueChanges(action, EventArgs.Empty);
|
||||||
|
|
||||||
//mxd. Args
|
//mxd. Args
|
||||||
argscontrol.SetValue(fl, true);
|
argscontrol.SetValue(fl, true);
|
||||||
|
|
Loading…
Reference in a new issue