GUI: new pattern cursor logic, part 13

find/replace and some other places I've missed
This commit is contained in:
tildearrow 2025-07-04 04:30:31 -05:00
parent 0bbdfa877e
commit 1c7f71ffaa
3 changed files with 5 additions and 3 deletions

View file

@ -423,7 +423,7 @@ void FurnaceGUI::drawPattern() {
if (e->isStepping()) pendingStepUpdate=1;
cursor.y=oldRow;
cursor.order=curOrder;
if (selStart.xCoarse==selEnd.xCoarse && selStart.xFine==selEnd.xFine && selStart.y==selEnd.y && !selecting) {
if (selStart.xCoarse==selEnd.xCoarse && selStart.xFine==selEnd.xFine && selStart.y==selEnd.y && selStart.order==selEnd.order && !selecting) {
selStart=cursor;
selEnd=cursor;
}