mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-02-05 07:11:12 +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
efd19296bd
commit
28aa7e4481
2 changed files with 9 additions and 0 deletions
|
@ -1852,6 +1852,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();
|
||||
|
|
|
@ -382,6 +382,9 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
}
|
||||
//BuilderPlug.Me.AdjustSplitCoordinates(l, sld);
|
||||
|
||||
// Create the blockmap
|
||||
CreateBlockmap();
|
||||
|
||||
// Update
|
||||
General.Map.Map.Update();
|
||||
|
||||
|
@ -976,6 +979,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