GUI: fix wrong cursor pos on step row

This commit is contained in:
tildearrow 2023-08-29 17:06:40 -05:00
parent de34b5c9c4
commit d7f3be70c6
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ void FurnaceGUI::drawPattern() {
bool inhibitMenu=false;
if (e->isPlaying() && followPattern && (!e->isStepping() || pendingStepUpdate)) {
cursor.y=oldRow+((pendingStepUpdate)?1:0);
cursor.y=e->getRow();
if (selStart.xCoarse==selEnd.xCoarse && selStart.xFine==selEnd.xFine && selStart.y==selEnd.y && !selecting) {
selStart=cursor;
selEnd=cursor;