Add keyboard shortcut to duplicate layers (#214)

* Add keyboard shortcut to duplicate layers

* Avoid heap allocation in DuplicateSelectedLayers
This commit is contained in:
Till Arnold
2021-06-16 11:15:02 +02:00
committed by Keavon Chambers
parent 310db82ab4
commit ff232bd722
5 changed files with 20 additions and 1 deletions

View File

@@ -60,6 +60,9 @@ pub enum Operation {
DeleteLayer {
path: Vec<LayerId>,
},
DuplicateLayer {
path: Vec<LayerId>,
},
AddFolder {
path: Vec<LayerId>,
},