Skip to content

Commit

Permalink
[dynmulti] fix second scroll arrow y offset
Browse files Browse the repository at this point in the history
  • Loading branch information
sbird committed Apr 24, 2023
1 parent 12d4b43 commit a2dfc7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ static void DrawMultichoiceMenuDynamic(u8 left, u8 top, u8 argc, struct ListMenu
template.firstX = (newWidth / 2) * 8 + 12 + (left) * 8;
template.firstY = top * 8 + 5;
template.secondX = template.firstX;
template.secondY = windowHeight * 8 + 12;
template.secondY = top * 8 + windowHeight * 8 + 12;
template.fullyUpThreshold = 0;
template.fullyDownThreshold = argc - maxBeforeScroll;
template.firstArrowType = SCROLL_ARROW_UP;
Expand Down

0 comments on commit a2dfc7c

Please sign in to comment.