Skip to content

Commit

Permalink
Playtime: Allow moving clip to other slot
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Oct 29, 2023
1 parent fa8ff1d commit 1d8e9fd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main/src/infrastructure/ui/app/app_library.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,9 @@ fn process_command(req: proto::command_request::Value) -> Result<()> {
DragSlot(req) => {
handler.drag_slot(req)?;
}
DragClip(req) => {
handler.drag_clip(req)?;
}
TriggerClip(req) => {
handler.trigger_clip(req)?;
}
Expand Down

0 comments on commit 1d8e9fd

Please sign in to comment.