mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-10 06:41:49 +00:00
Linedefs Mode: fixed a problem where after splitting a linedef the insert vertex preview would not work correctly
Vertices Mode: fixed a problem where after inserting a vertext the insert vertex preview would not work correctly
This commit is contained in:
parent
541c754a78
commit
6318a096df
2 changed files with 10 additions and 1 deletions
|
@ -1889,6 +1889,9 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
//BuilderPlug.Me.AdjustSplitCoordinates(ld, sld);
|
||||
}
|
||||
|
||||
// Create the blockmap
|
||||
CreateBlockmap();
|
||||
|
||||
// Update cache values
|
||||
General.Map.IsChanged = true;
|
||||
General.Map.Map.Update();
|
||||
|
|
|
@ -371,7 +371,10 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
return;
|
||||
}
|
||||
//BuilderPlug.Me.AdjustSplitCoordinates(l, sld);
|
||||
|
||||
|
||||
// Create the blockmap
|
||||
CreateBlockmap();
|
||||
|
||||
// Update
|
||||
General.Map.Map.Update();
|
||||
|
||||
|
@ -986,6 +989,9 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
General.Interface.DisplayStatus(StatusType.Action, "Inserted a vertex.");
|
||||
}
|
||||
|
||||
// Create the blockmap
|
||||
CreateBlockmap();
|
||||
|
||||
// Update
|
||||
General.Map.Map.Update();
|
||||
|
||||
|
|
Loading…
Reference in a new issue