instrument drag&drop: fix marking as modified
This commit is contained in:
parent
d80fe7e0a7
commit
1b3a3c457d
|
@ -91,6 +91,7 @@ const char* sampleNote[12]={
|
||||||
while (_toMoveVar>target) { \
|
while (_toMoveVar>target) { \
|
||||||
if (_moveUpFn(_toMoveVar)) { \
|
if (_moveUpFn(_toMoveVar)) { \
|
||||||
_toMoveVar--; \
|
_toMoveVar--; \
|
||||||
|
markModified=true; \
|
||||||
} else { \
|
} else { \
|
||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
|
@ -98,6 +99,7 @@ const char* sampleNote[12]={
|
||||||
while (_toMoveVar<target) { \
|
while (_toMoveVar<target) { \
|
||||||
if (_moveDownFn(_toMoveVar)) { \
|
if (_moveDownFn(_toMoveVar)) { \
|
||||||
_toMoveVar++; \
|
_toMoveVar++; \
|
||||||
|
markModified=true; \
|
||||||
} else { \
|
} else { \
|
||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
|
|
Loading…
Reference in a new issue