Explorar o código

Fix DROPEFFECT_NONE incorrectly replaced by DROPEFFECT_MOVE by c5dc64595a

Source commit: 34b6dc4530fe2c40d284ca4d7be0ccf94035512e
Martin Prikryl %!s(int64=6) %!d(string=hai) anos
pai
achega
8cdf46bc42
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      source/forms/CustomScpExplorer.cpp

+ 1 - 1
source/forms/CustomScpExplorer.cpp

@@ -7941,7 +7941,7 @@ void __fastcall TCustomScpExplorerForm::RemoteFileContolDDChooseEffect(
           else
           {
             // with ctrl-down, we want copy unless it is not supported
-            dwEffect = CopyCapable ? DROPEFFECT_COPY : DROPEFFECT_MOVE;
+            dwEffect = CopyCapable ? DROPEFFECT_COPY : DROPEFFECT_NONE;
           }
         }
       }