From 76a3300cc4dce65efec02b467b826f47cce6b873 Mon Sep 17 00:00:00 2001 From: agessaman Date: Sun, 19 Jul 2026 18:17:21 -0700 Subject: [PATCH] fix(repeater): restore node name at top of home screen A merge conflict resolution collapsed the `// node name` comment and its `_display->setCursor(0, 0)` call onto a single line, which commented out the cursor reset. The node name then rendered at whatever cursor position was left over from the previous frame (the end of the IP: line), so it trailed the IP address and wrapped onto the next line instead of appearing at the top of the home screen. Split the comment and setCursor back onto separate lines so the name is drawn at (0, 0) again. --- examples/simple_repeater/UITask.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/simple_repeater/UITask.cpp b/examples/simple_repeater/UITask.cpp index 7f3b7c34..28e2e5fc 100644 --- a/examples/simple_repeater/UITask.cpp +++ b/examples/simple_repeater/UITask.cpp @@ -135,7 +135,8 @@ void UITask::renderCurrScreen() { return; } #endif - // node name _display->setCursor(0, 0); + // node name + _display->setCursor(0, 0); _display->setTextSize(1); _display->setColor(DisplayDriver::GREEN); _display->print(_node_prefs->node_name);