summaryrefslogtreecommitdiffstats
path: root/src/commands/file_ops/paste_cut.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/file_ops/paste_cut.rs')
-rw-r--r--src/commands/file_ops/paste_cut.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/file_ops/paste_cut.rs b/src/commands/file_ops/paste_cut.rs
index 3d1b610..fb9dc72 100644
--- a/src/commands/file_ops/paste_cut.rs
+++ b/src/commands/file_ops/paste_cut.rs
@@ -63,7 +63,7 @@ pub fn paste_cut(
rx_start.recv();
for path in paths {
total += recursive_cut(thread_dest.as_path(), path.as_path(), &options)?;
- tx.send(Event::IOWorkerProgress(total));
+ tx.send(total);
}
Ok(total)
});