mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
cut buffer must not mess around with libardour selection
Fixes range mode selection/cut/copy that would previously clear track selection
This commit is contained in:
parent
ca815acd61
commit
6ac76734f5
3 changed files with 10 additions and 4 deletions
|
|
@ -90,7 +90,7 @@ class Selection : public sigc::trackable, public PBD::ScopedConnectionList
|
|||
/** only used when this class is used as a cut buffer */
|
||||
MidiNoteSelection midi_notes;
|
||||
|
||||
Selection (PublicEditor const * e);
|
||||
Selection (PublicEditor const * e, bool manage_libardour_selection);
|
||||
|
||||
// Selection& operator= (const Selection& other);
|
||||
|
||||
|
|
@ -230,6 +230,7 @@ class Selection : public sigc::trackable, public PBD::ScopedConnectionList
|
|||
private:
|
||||
PublicEditor const * editor;
|
||||
uint32_t next_time_id;
|
||||
bool manage_libardour_selection;
|
||||
|
||||
TrackViewList add_grouped_tracks (TrackViewList const & t);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue