1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-25 14:11:28 +01:00

Don't create placeholder clips in Duplicate command ...

... when there is no clip at the right edge of the selection.
This commit is contained in:
Paul Licameli
2016-11-26 08:48:08 -05:00
parent 65c722bfe5
commit 25619fb46e
9 changed files with 29 additions and 13 deletions

View File

@@ -91,7 +91,7 @@ class AUDACITY_DLL_API NoteTrack final : public Track {
// High-level editing
Track::Holder Cut (double t0, double t1) override;
Track::Holder Copy (double t0, double t1) const override;
Track::Holder Copy (double t0, double t1, bool forClipboard = true) const override;
bool Trim (double t0, double t1) /* not override */;
bool Clear(double t0, double t1) override;
bool Paste(double t, const Track *src) override;