Fix error when entering playmode while holding right mouse button

This commit is contained in:
2025-03-29 17:53:28 +02:00
parent f8f846c2bb
commit 43a83a9ec9

View File

@@ -1927,7 +1927,8 @@ namespace FlaxEditor.Viewport
if (_isControllingMouse)
{
OnControlMouseEnd(RootWindow.Window);
if (RootWindow?.Window != null)
OnControlMouseEnd(RootWindow.Window);
_isControllingMouse = false;
_isVirtualMouseRightDown = false;
}