mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-01-30 20:50:41 +00:00
Fixed a crash when opening the edit window for a linedef with action 402.
This commit is contained in:
parent
7e5c53cfc6
commit
732ae6481d
2 changed files with 2 additions and 2 deletions
2
Source/Core/Windows/LinedefEditForm.Designer.cs
generated
2
Source/Core/Windows/LinedefEditForm.Designer.cs
generated
|
@ -535,7 +535,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
this.action.Name = "action";
|
||||
this.action.Size = new System.Drawing.Size(412, 21);
|
||||
this.action.TabIndex = 0;
|
||||
this.action.Value = 402;
|
||||
this.action.Value = -1;
|
||||
this.action.ValueChanges += new System.EventHandler(this.action_ValueChanges);
|
||||
//
|
||||
// idgroup
|
||||
|
|
|
@ -280,7 +280,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
this.action.Name = "action";
|
||||
this.action.Size = new System.Drawing.Size(402, 21);
|
||||
this.action.TabIndex = 0;
|
||||
this.action.Value = 402;
|
||||
this.action.Value = -1;
|
||||
this.action.ValueChanges += new System.EventHandler(this.action_ValueChanges);
|
||||
//
|
||||
// browseaction
|
||||
|
|
Loading…
Reference in a new issue