From d42a1879abe1e2c9b886a747943dbb114594f641 Mon Sep 17 00:00:00 2001 From: VaDiM Date: Tue, 5 Dec 2023 00:37:16 +0300 Subject: [PATCH] [GUI] Add support for Drag&Drop files from a browser Co-Authored-By: Luke <17146677+lukefz@users.noreply.github.com> --- AssetStudioGUI/AssetStudioGUIForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AssetStudioGUI/AssetStudioGUIForm.cs b/AssetStudioGUI/AssetStudioGUIForm.cs index 87f9905..9d7d97b 100644 --- a/AssetStudioGUI/AssetStudioGUIForm.cs +++ b/AssetStudioGUI/AssetStudioGUIForm.cs @@ -139,7 +139,7 @@ namespace AssetStudioGUI { if (e.Data.GetDataPresent(DataFormats.FileDrop)) { - e.Effect = DragDropEffects.Move; + e.Effect = DragDropEffects.Copy; } }