Skip to content

Commit

Permalink
instrument drag&drop: fix marking as modified
Browse files Browse the repository at this point in the history
  • Loading branch information
yohannd1 authored and tildearrow committed Dec 25, 2024
1 parent d80fe7e commit 1b3a3c4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gui/dataList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,15 @@ const char* sampleNote[12]={
while (_toMoveVar>target) { \
if (_moveUpFn(_toMoveVar)) { \
_toMoveVar--; \
markModified=true; \
} else { \
break; \
} \
} \
while (_toMoveVar<target) { \
if (_moveDownFn(_toMoveVar)) { \
_toMoveVar++; \
markModified=true; \
} else { \
break; \
} \
Expand Down

0 comments on commit 1b3a3c4

Please sign in to comment.