[UI/UIX] Default cursor to new move when learning a move (#5908)

This commit is contained in:
SmhMyHead 2025-05-31 17:54:02 +02:00 committed by GitHub
parent ccd9480240
commit 831381e4ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1239,7 +1239,7 @@ export default class SummaryUiHandler extends UiHandler {
this.moveSelect = true;
this.extraMoveRowContainer.setVisible(true);
this.selectedMoveIndex = -1;
this.setCursor(0);
this.setCursor(this.summaryUiMode === SummaryUiMode.LEARN_MOVE ? 4 : 0);
this.showMoveEffect();
}