diff --git a/screenshots/tool_bind.png b/screenshots/tool_bind.png index 8aeb6f8..6921257 100644 Binary files a/screenshots/tool_bind.png and b/screenshots/tool_bind.png differ diff --git a/screenshots/tool_bind_bw.png b/screenshots/tool_bind_bw.png index 6932224..dedfb13 100644 Binary files a/screenshots/tool_bind_bw.png and b/screenshots/tool_bind_bw.png differ diff --git a/src/SCRIPTS/TOOLS/ExpressLRS/ui/lcd.lua b/src/SCRIPTS/TOOLS/ExpressLRS/ui/lcd.lua index f953df5..3c41505 100644 --- a/src/SCRIPTS/TOOLS/ExpressLRS/ui/lcd.lua +++ b/src/SCRIPTS/TOOLS/ExpressLRS/ui/lcd.lua @@ -299,7 +299,7 @@ function UI.getBackExitLabel() if Navigation.isAtRoot() then return "-- EXIT (" .. VERSION .. ") --" else - return "----BACK----" + return "---- BACK ----" end end diff --git a/src/SCRIPTS/TOOLS/ExpressLRSBind/ui/lcd.lua b/src/SCRIPTS/TOOLS/ExpressLRSBind/ui/lcd.lua index 56c2647..3f5392f 100644 --- a/src/SCRIPTS/TOOLS/ExpressLRSBind/ui/lcd.lua +++ b/src/SCRIPTS/TOOLS/ExpressLRSBind/ui/lcd.lua @@ -29,6 +29,8 @@ local ROW_CLEAR = 8 local ROW_BACK = 9 local HIST_BASE = 100 +local EXIT_LABEL = "[-- EXIT (" .. VERSION .. ") --]" + local PAGE_MAIN = 1 local PAGE_HISTORY = 2 @@ -257,7 +259,7 @@ end local function drawTitle() lcd.drawFilledRectangle(0, 0, LCD_W, UI.textSize + 1, GREY_DEFAULT) - lcd.drawText(UI.COL1 + 1, 1, "ELRS Bind " .. VERSION, INVERS) + lcd.drawText(UI.COL1 + 1, 1, "ExpressLRS Bind Tool", INVERS) -- Link flag: C while RX telemetry is alive, - otherwise lcd.drawText(LCD_W - 1, 1, crsf.hasTelemetry and "C" or "-", INVERS + RIGHT) end @@ -282,7 +284,7 @@ local function drawRow(id, yPos, isSelected) elseif id == ROW_HISTORY then lcd.drawText(UI.COL1, yPos, "> History", attr + BOLD) elseif id == ROW_EXIT then - lcd.drawText(10, yPos, "[---- EXIT ----]", attr + BOLD) + lcd.drawText(10, yPos, EXIT_LABEL, attr + BOLD) elseif id == ROW_CLEAR then lcd.drawText(10, yPos, "[Clear All]", attr + BOLD) elseif id == ROW_BACK then diff --git a/src/SCRIPTS/TOOLS/ExpressLRSBind/ui/lvgl.lua b/src/SCRIPTS/TOOLS/ExpressLRSBind/ui/lvgl.lua index 3b45b45..abbc879 100644 --- a/src/SCRIPTS/TOOLS/ExpressLRSBind/ui/lvgl.lua +++ b/src/SCRIPTS/TOOLS/ExpressLRSBind/ui/lvgl.lua @@ -50,7 +50,7 @@ local function buildUi() lvgl.clear() local pg = lvgl.page({ - title = "ExpressLRS Bind Phrase", + title = "ExpressLRS Bind Tool", subtitle = App.uidLine, back = exitTool, })