Skip to content

Commit

Permalink
loader/menu: tweak for added line
Browse files Browse the repository at this point in the history
I added a line to the menu, but didn't adjust so things were a
line off. Make the necessary adjustments.

Fixes: 7cb65be
Sponsored by: Netflix
MFC After: 3 days
  • Loading branch information
bsdimp committed Aug 22, 2024
1 parent 6aee1dc commit 101afbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stand/lua/drawer.lua
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ logodefs = {
brand_position = {x = 2, y = 1}
logo_position = {x = 46, y = 4}
menu_position = {x = 5, y = 10}
frame_size = {w = 42, h = 13}
frame_size = {w = 42, h = 14}
default_shift = {x = 0, y = 0}
shift = default_shift

Expand Down
2 changes: 1 addition & 1 deletion stand/lua/menu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ end

function menu.autoboot(delay)
local x = loader.getenv("loader_menu_timeout_x") or 4
local y = loader.getenv("loader_menu_timeout_y") or 23
local y = loader.getenv("loader_menu_timeout_y") or 24
local endtime = loader.time() + delay
local time
local last
Expand Down

0 comments on commit 101afbc

Please sign in to comment.