Fix another error in SRB2 linedef edit form

This commit is contained in:
spherallic 2023-07-14 01:07:06 +02:00
parent 27d7032f6b
commit a6d0531c95

View file

@ -293,7 +293,10 @@ namespace CodeImp.DoomBuilder.Windows
executordelay.Text = UniFields.GetInteger(fl.Fields, "executordelay", 0).ToString();
// Action
action.Value = fl.Action;
if (action.Value != fl.Action)
action.Value = fl.Action;
else
action_ValueChanges(action, EventArgs.Empty);
//mxd. Args
argscontrol.SetValue(fl, true);