diff --git a/haxe/ui/tooltips/ToolTipManager.hx b/haxe/ui/tooltips/ToolTipManager.hx index 5ff2860c2..0d48fb08c 100644 --- a/haxe/ui/tooltips/ToolTipManager.hx +++ b/haxe/ui/tooltips/ToolTipManager.hx @@ -172,7 +172,7 @@ class ToolTipManager { _timer = null; if (_currentRegion != null) { showToolTipForRegion(_currentRegion); - } else if (_currentComponent != null) { + } else if (_currentComponent != null && _currentComponent.exists) { showToolTipForComponent(_currentComponent); } } @@ -388,4 +388,4 @@ class ToolTipManager { _toolTipContents.addComponent(label); return _toolTipContents; } -} \ No newline at end of file +}