mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-21 03:11:40 +00:00
Linedefs Mode: fixed a crash that could happen when the mouse was moved out of the map control while an UDBScript was modifying the map
This commit is contained in:
parent
f9fe1ea900
commit
98d32f7946
1 changed files with 1 additions and 1 deletions
|
@ -483,7 +483,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
/// </summary>
|
||||
private void RenderOverlay()
|
||||
{
|
||||
if (renderer.StartOverlay(true))
|
||||
if (General.Map.Map.IsSafeToAccess && renderer.StartOverlay(true))
|
||||
{
|
||||
if (!selecting) //mxd
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue