fix silent crash sometimes occurring when dragging and dropping connections

This commit is contained in:
Saas
2025-12-12 22:44:13 +01:00
parent bf3403449d
commit b5b1d84b3f

View File

@@ -585,7 +585,7 @@ namespace FlaxEditor.Surface.ContextMenu
private void UpdateFilters()
{
if (string.IsNullOrEmpty(_searchBox.Text) && _selectedBoxes.Count > 0)
if (string.IsNullOrEmpty(_searchBox.Text) && _selectedBoxes.Count > 0 && _selectedBoxes[0] == null)
{
ResetView();
Profiler.EndEvent();