diff options
| author | Kyle Evans <kevans@FreeBSD.org> | 2021-01-15 14:15:40 +0000 |
|---|---|---|
| committer | Kyle Evans <kevans@FreeBSD.org> | 2021-01-15 21:02:38 +0000 |
| commit | 994e1f40f6db059290cf4a8203c2b9eea22d9a38 (patch) | |
| tree | a73e2e374ea7219e78993fe2673680f0fba6a6ef /stand | |
| parent | c664d8dfc3dd65611f63ca8277841a29a46260f1 (diff) | |
Diffstat (limited to 'stand')
| -rw-r--r-- | stand/lua/drawer.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/lua/drawer.lua b/stand/lua/drawer.lua index 3ace3884ff8a..6062d7e87a03 100644 --- a/stand/lua/drawer.lua +++ b/stand/lua/drawer.lua @@ -283,7 +283,7 @@ local function drawbox() end end if menu_header_x == nil then - menu_header_x = x + (w / 2) - (#menu_header / 2) + menu_header_x = x + (w // 2) - (#menu_header // 2) end screen.setcursor(menu_header_x, y) printc(menu_header) |
