mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-22 20:02:48 +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();
|
||||
|
||||
// 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);
|
||||
|
|
Loading…
Reference in a new issue