mirror of
https://github.com/tildearrow/furnace.git
synced 2025-01-05 07:01:21 +00:00
instrument drag&drop: fix marking as modified
This commit is contained in:
parent
d80fe7e0a7
commit
1b3a3c457d
1 changed files with 2 additions and 0 deletions
|
@ -91,6 +91,7 @@ const char* sampleNote[12]={
|
|||
while (_toMoveVar>target) { \
|
||||
if (_moveUpFn(_toMoveVar)) { \
|
||||
_toMoveVar--; \
|
||||
markModified=true; \
|
||||
} else { \
|
||||
break; \
|
||||
} \
|
||||
|
@ -98,6 +99,7 @@ const char* sampleNote[12]={
|
|||
while (_toMoveVar<target) { \
|
||||
if (_moveDownFn(_toMoveVar)) { \
|
||||
_toMoveVar++; \
|
||||
markModified=true; \
|
||||
} else { \
|
||||
break; \
|
||||
} \
|
||||
|
|
Loading…
Reference in a new issue