Cancel in-progress drag with right click or escape key (#119)

This commit is contained in:
Paul Kupper
2021-05-09 10:26:47 +02:00
committed by GitHub
parent 78ff81ffa8
commit 57252fa828
10 changed files with 70 additions and 47 deletions

View File

@@ -274,12 +274,12 @@ impl Document {
self.work_mount_path = vec![];
self.work = Folder::default();
self.work_mounted = false;
None
Some(vec![DocumentResponse::DocumentChanged])
}
Operation::ClearWorkingFolder => {
self.work_operations.clear();
self.work = Folder::default();
None
Some(vec![DocumentResponse::DocumentChanged])
}
Operation::CommitTransaction => {
let mut ops = Vec::new();