Simplified tool tip hide

This commit is contained in:
Chandler Cox
2022-10-06 19:12:46 -05:00
parent 2d42ca522d
commit 091fe0a40a

View File

@@ -950,11 +950,8 @@ namespace FlaxEngine.GUI
_isDragOver = true;
// Hide tooltip
if (_tooltipUpdate != null)
{
Tooltip.Hide();
}
Tooltip?.Hide();
return DragDropEffect.None;
}