From 1a5bd88b2ccb7bfdbcfad8dc5e30c207a6d1cd43 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Mon, 17 Jul 2023 00:35:57 +0200 Subject: [PATCH] Fix drag & drop tooltip persisting when moving outside the viewports. --- Dalamud/Interface/DragDrop/DragDropTarget.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Dalamud/Interface/DragDrop/DragDropTarget.cs b/Dalamud/Interface/DragDrop/DragDropTarget.cs index 05e5599f9..5e7166fb3 100644 --- a/Dalamud/Interface/DragDrop/DragDropTarget.cs +++ b/Dalamud/Interface/DragDrop/DragDropTarget.cs @@ -78,6 +78,7 @@ internal partial class DragDropManager : DragDropManager.IDropTarget this.Files = Array.Empty(); this.Directories = Array.Empty(); this.Extensions = new HashSet(); + MouseDrop(this.lastKeyState); Log.Debug("[DragDrop] Leaving external Drag and Drop."); }