diff options
author | Florian Jung <flo@windfisch.org> | 2011-08-31 20:15:13 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-08-31 20:15:13 +0000 |
commit | e64c6677de790368781f7d9f1ba1c98bcfc521d2 (patch) | |
tree | 6b4d788a846b021e13ee4875d43c4604965943ab /muse2/muse/structure.h | |
parent | e6b32e0c06254a99b09133b39e4f7c06bd9ec6ed (diff) |
structure operations operate on selected tracks, not on non-muted tracks
fixed infinite recursion bug in global operations
Diffstat (limited to 'muse2/muse/structure.h')
-rw-r--r-- | muse2/muse/structure.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muse2/muse/structure.h b/muse2/muse/structure.h index 955978dc..d1de1192 100644 --- a/muse2/muse/structure.h +++ b/muse2/muse/structure.h @@ -10,7 +10,7 @@ #include "undo.h" -Undo movePartsTotheRight(unsigned int startTick, int moveTick); +Undo movePartsTotheRight(unsigned int startTick, int moveTick, bool only_selected=false); void adjustGlobalLists(Undo& operations, int startPos, int diff); void globalCut(); void globalInsert(); |