From 2d42ca522dcc613e6ced8966cad9b75e5613ac86 Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Thu, 6 Oct 2022 16:51:25 -0500 Subject: [PATCH] Fixed spacing and comment --- Source/Engine/UI/GUI/Control.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; }