Fix auto stop mark position on new stop frame

This commit is contained in:
manongjohn 2022-01-07 22:13:12 -05:00
parent 30bbb6a9be
commit 57be4bd1b2

View file

@ -338,7 +338,7 @@ bool TXsheet::setCell(int row, int col, const TXshCell &cell) {
if (cell.isEmpty())
updateFrameCount();
else if (row >= m_imp->m_frameCount)
m_imp->m_frameCount = row + 1;
m_imp->m_frameCount = row + (cell.getFrameId().isStopFrame() ? 0 : 1);
TNotifier::instance()->notify(TXsheetChange());