Fix tooltip not hiding after clicking on TreeNode

This commit is contained in:
2023-02-12 14:11:04 +02:00
parent 6b634322ff
commit e3a96fa724

View File

@@ -179,6 +179,8 @@ namespace FlaxEngine.GUI
/// <param name="target">The target.</param>
public void OnMouseLeaveControl(Control target)
{
if (Visible)
Hide();
_lastTarget = null;
}