Fix cursor getting back to the top on action

This commit is contained in:
Greenlamp 2024-05-17 19:18:08 +02:00
parent 691d9b7a5c
commit b00acc32f0

View File

@ -351,8 +351,8 @@ export default abstract class AbstractSettingsUiUiHandler extends UiHandler {
}
// Set the cursor and scroll cursor to their initial positions.
this.setCursor(0);
this.setScrollCursor(0);
this.setCursor(this.cursor);
this.setScrollCursor(this.scrollCursor);
}
/**