diff --git a/Source/Engine/UI/GUI/Control.cs b/Source/Engine/UI/GUI/Control.cs index 19b7761cb..992194925 100644 --- a/Source/Engine/UI/GUI/Control.cs +++ b/Source/Engine/UI/GUI/Control.cs @@ -948,11 +948,13 @@ namespace FlaxEngine.GUI { // Set flag _isDragOver = true; - // Update tooltip + + // Hide tooltip if (_tooltipUpdate != null) { Tooltip.Hide(); } + return DragDropEffect.None; }