Fix tooltip not appearing anymore after scripts compilation

This commit is contained in:
2025-04-10 18:20:55 +03:00
parent a9a9057304
commit 2acca350fe

View File

@@ -1082,6 +1082,11 @@ namespace FlaxEngine.GUI
[NoAnimate]
public void UnlinkTooltip()
{
if (_tooltipUpdate != null)
{
SetUpdate(ref _tooltipUpdate, null);
Tooltip?.OnMouseLeaveControl(this);
}
_tooltipText = null;
_tooltip = null;
}