mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Copy/Cut to clipboard from search results
This commit is contained in:
parent
8538f7bda2
commit
ec8ec7dfce
1 changed files with 2 additions and 2 deletions
|
|
@ -2784,14 +2784,14 @@ begin
|
|||
Result := False;
|
||||
|
||||
with frmMain.ActiveFrame do
|
||||
if FileSource.IsClass(TFileSystemFileSource) then
|
||||
if (fspDirectAccess in FileSource.Properties) then
|
||||
begin
|
||||
sl := TStringList.Create;
|
||||
try
|
||||
theSelectedFiles := CloneSelectedOrActiveFiles;
|
||||
|
||||
for i := 0 to theSelectedFiles.Count - 1 do
|
||||
sl.Add(CurrentPath + theSelectedFiles[i].Name);
|
||||
sl.Add(theSelectedFiles[i].FullPath);
|
||||
|
||||
case ClipboardMode of
|
||||
uClipboard.ClipboardCut:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue