Skip to content

Commit

Permalink
stats.lua: fix scrolling for page 2
Browse files Browse the repository at this point in the history
Scrolling for page 2 was disabled in 777f69b
but the keys were still bound, so this was clearly a mistake.
  • Loading branch information
christoph-heinrich authored and kasper93 committed Apr 9, 2024
1 parent 0d25089 commit 58eae25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion player/lua/stats.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ local function vo_stats()
add_header(header)
append_perfdata(header, content, true, true)
header = {table.concat(header)}
return finalize_page(header, content, false)
return finalize_page(header, content, true)
end

local kbinfo_lines = nil
Expand Down

0 comments on commit 58eae25

Please sign in to comment.