mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
UPD: Use Command+Drag&Drop to move under macOS (fixes #1536)
This commit is contained in:
parent
e2cf8a099d
commit
b80b584700
1 changed files with 3 additions and 3 deletions
|
|
@ -392,16 +392,16 @@ const
|
|||
begin
|
||||
if (ssBoth * ShiftState = ssBoth) then
|
||||
Exit(DropMoveEffect);
|
||||
ShiftState := [ssCtrl, ssShift, ssAlt] * ShiftState;
|
||||
ShiftState := [ssModifier, ssShift, ssAlt] * ShiftState;
|
||||
if ShiftState = [] then
|
||||
Result := DropCopyEffect // default to Copy when no keys pressed
|
||||
else if ShiftState = [ssShift] then
|
||||
Result := DropMoveEffect
|
||||
else if ShiftState = [ssCtrl] then
|
||||
else if ShiftState = [ssModifier] then
|
||||
Result := DropMoveEffect
|
||||
else if ShiftState = [ssAlt] then
|
||||
Result := DropAskEffect
|
||||
else if ShiftState = [ssCtrl, ssShift] then
|
||||
else if ShiftState = [ssModifier, ssShift] then
|
||||
Result := DropLinkEffect
|
||||
else
|
||||
Result := DropNoEffect; // some other key combination pressed
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue