Fixed crash after manually creating a Sidedef through the Edit Linedef dialog

This commit is contained in:
codeimp 2009-03-25 13:52:29 +00:00
parent 73315c2cb3
commit d0203f7f7b

View file

@ -378,7 +378,8 @@ namespace CodeImp.DoomBuilder.BuilderModes
{
// Show line edit dialog
General.Interface.ShowEditLinedefs(selected);
General.Map.Map.Update();
// When a single line was selected, deselect it now
if(selected.Count == 1) General.Map.Map.ClearSelectedLinedefs();