diff --git a/Source/Engine/UI/GUI/Control.cs b/Source/Engine/UI/GUI/Control.cs index 8384741bc..86c242609 100644 --- a/Source/Engine/UI/GUI/Control.cs +++ b/Source/Engine/UI/GUI/Control.cs @@ -948,6 +948,10 @@ namespace FlaxEngine.GUI { // Set flag _isDragOver = true; + + // Hide tooltip + Tooltip?.Hide(); + return DragDropEffect.None; }