Skip to content

Commit 08c73b9

Browse files
Fixed endless paging loop
1 parent 8a4ea5d commit 08c73b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SCRIPTS/BF/ui.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ function run_ui(event)
326326
if event == EVT_VIRTUAL_PREV_PAGE then
327327
incPage(-1)
328328
killEvents(event) -- X10/T16 issue: pageUp is a long press
329-
elseif event == EVT_VIRTUAL_NEXT_PAGE or EVT_VIRTUAL_MENU then
329+
elseif event == EVT_VIRTUAL_NEXT_PAGE or event == EVT_VIRTUAL_MENU then
330330
incPage(1)
331331
elseif event == EVT_VIRTUAL_PREV or event == EVT_VIRTUAL_PREV_REPT then
332332
incLine(-1)

0 commit comments

Comments
 (0)