From 1ab472cbdf49b55b93b3a8d8021cf46153be82ef Mon Sep 17 00:00:00 2001 From: Mumble <171087428+frutescens@users.noreply.github.com> Date: Sun, 25 Aug 2024 07:14:47 -0700 Subject: [PATCH] [Bug] Achievements/Vouchers doesn't update if Cursor doesn't move (#3747) Co-authored-by: frutescens --- src/ui/achvs-ui-handler.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ui/achvs-ui-handler.ts b/src/ui/achvs-ui-handler.ts index df2fde9d902..5279c191d87 100644 --- a/src/ui/achvs-ui-handler.ts +++ b/src/ui/achvs-ui-handler.ts @@ -211,12 +211,11 @@ export default class AchvsUiHandler extends MessageUiHandler { if (this.currentPage === Page.ACHIEVEMENTS) { this.currentPage = Page.VOUCHERS; this.updateVoucherIcons(); - this.setCursor(0); } else if (this.currentPage === Page.VOUCHERS) { this.currentPage = Page.ACHIEVEMENTS; this.updateAchvIcons(); - this.setCursor(0); } + this.setCursor(0, true); this.mainContainer.update(); } if (button === Button.CANCEL) {