The branch stable/14 has been updated by kevans:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=9e09ab407983bcda008d4047f33e7de68d1d1c41

commit 9e09ab407983bcda008d4047f33e7de68d1d1c41
Author:     Emmanuel Vadot <m...@freebsd.org>
AuthorDate: 2025-01-07 08:57:57 +0000
Commit:     Kyle Evans <kev...@freebsd.org>
CommitDate: 2025-07-21 02:12:24 +0000

    loader: Fix orb position
    
    Fix the orb position to be aligned with the menu
    
    Reviewed by:    imp, tsoome
    Sponsored by:   Beckhoff Automation GmbH & Co. KG
    
    (cherry picked from commit 1b4e1171315398decb1ad3fceffcacf29cff218b)
---
 stand/lua/drawer.lua    | 4 ++--
 stand/lua/gfx-orb.lua   | 2 +-
 stand/lua/gfx-orbbw.lua | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/stand/lua/drawer.lua b/stand/lua/drawer.lua
index 8c4307220642..1bf741b2373e 100644
--- a/stand/lua/drawer.lua
+++ b/stand/lua/drawer.lua
@@ -470,9 +470,9 @@ logodefs = {
 }
 
 brand_position = {x = 2, y = 1}
-logo_position = {x = 46, y = 4}
+logo_position = {x = 40, y = 10}
 menu_position = {x = 5, y = 10}
-frame_size = {w = 42, h = 14}
+frame_size = {w = 39, h = 14}
 default_shift = {x = 0, y = 0}
 shift = default_shift
 
diff --git a/stand/lua/gfx-orb.lua b/stand/lua/gfx-orb.lua
index 00f4aeb3bceb..cd834a2d6b8e 100644
--- a/stand/lua/gfx-orb.lua
+++ b/stand/lua/gfx-orb.lua
@@ -45,7 +45,7 @@ return {
                    "         .---.....----.\027[m",
                },
                requires_color = true,
-               shift = {x = 2, y = 3},
+               shift = {x = 2, y = -1},
                image = "/boot/images/freebsd-logo-rev.png",
                image_rl = 15
        }
diff --git a/stand/lua/gfx-orbbw.lua b/stand/lua/gfx-orbbw.lua
index 93ffd2366196..a97174a6a5a4 100644
--- a/stand/lua/gfx-orbbw.lua
+++ b/stand/lua/gfx-orbbw.lua
@@ -44,6 +44,6 @@ return {
                    "      .--             `--.",
                    "         .---.....----.",
                },
-               shift = {x = 2, y = 4},
+               shift = {x = 2, y = -1},
        }
 }

Reply via email to