| Summary: | The cut function. | ||
|---|---|---|---|
| Product: | [Applications] kdenlive | Reporter: | Konstantin <jon9097> |
| Component: | User Interface & Miscellaneous | Assignee: | Jean-Baptiste Mardelle <jb> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Arch Linux | ||
| OS: | Linux | ||
| Latest Commit: | https://invent.kde.org/multimedia/kdenlive/-/commit/76292c101c8884751f26c84f9bf826b26f5b93b0 | Version Fixed/Implemented In: | 25.08.0 |
| Sentry Crash Report: | |||
|
Description
Konstantin
2025-06-04 05:20:16 UTC
**Summary:** Add a "Cut" action (Ctrl+X) that works on selected clips in the timeline. It would copy the selected clips to the clipboard and then remove them from the timeline. **Why this is useful:** Currently, to cut clips from the timeline, the user must: 1. Press Ctrl+C to copy. 2. Press Delete to remove. Adding a single shortcut (Ctrl+X) would reduce this to one action, similar to standard editing behavior in most software. It would speed up editing and improve UX. **Proposed Behavior:** - Ctrl+X on timeline selection = Copy to clipboard + Delete selection - Works with multiple clips or compositions selected Thank you for considering this! Git commit 76292c101c8884751f26c84f9bf826b26f5b93b0 by Jean-Baptiste Mardelle. Committed on 04/06/2025 at 10:31. Pushed by mardelle into branch 'master'. Implement cut for timeline clips FIXED-IN: 25.08.0 M +17 -0 src/mainwindow.cpp M +1 -0 src/mainwindow.h M +6 -0 src/timeline2/view/timelinecontroller.cpp M +1 -0 src/timeline2/view/timelinecontroller.h https://invent.kde.org/multimedia/kdenlive/-/commit/76292c101c8884751f26c84f9bf826b26f5b93b0 (In reply to Jean-Baptiste Mardelle from comment #2) > Git commit 76292c101c8884751f26c84f9bf826b26f5b93b0 by Jean-Baptiste > Mardelle. > Committed on 04/06/2025 at 10:31. > Pushed by mardelle into branch 'master'. > > Implement cut for timeline clips > FIXED-IN: 25.08.0 > > M +17 -0 src/mainwindow.cpp > M +1 -0 src/mainwindow.h > M +6 -0 src/timeline2/view/timelinecontroller.cpp > M +1 -0 src/timeline2/view/timelinecontroller.h > > https://invent.kde.org/multimedia/kdenlive/-/commit/ > 76292c101c8884751f26c84f9bf826b26f5b93b0 Thank you, my friend. It will help a lot. I'm looking forward to the release of the fixed version :) |