From 2d30b02ddaaa8de3ffb0379c0d944eca63b0b348 Mon Sep 17 00:00:00 2001 From: monosans Date: Wed, 23 Jul 2025 15:58:07 +0300 Subject: [PATCH] fix: remove emoji characters from log scrolling instructions for clarity --- src/tui.rs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/tui.rs b/src/tui.rs index 5410f05..3c218d7 100644 --- a/src/tui.rs +++ b/src/tui.rs @@ -280,21 +280,19 @@ fn draw(f: &mut Frame, state: &AppState, logger_state: &TuiWidgetState) { let running = matches!(state.mode, AppMode::Running); let mut lines = Vec::with_capacity(if running { 4 } else { 3 }); - lines.push(Line::from("\u{2b06}\u{fe0f} Up / PageUp / k - scroll logs up")); - lines.push(Line::from( - "\u{2b07}\u{fe0f} Down / PageDown / j - scroll logs down", - )); + lines.push(Line::from("Up / PageUp / k - scroll logs up")); + lines.push(Line::from("Down / PageDown / j - scroll logs down")); if running { lines.push( - Line::from("\u{1f6d1} ESC / q - stop") + Line::from("ESC / q - stop") .style(Style::default().fg(Color::Yellow)), ); } lines.push( Line::from(if running { - "\u{1f6aa} Ctrl-C - quit" + "Ctrl-C - quit" } else { - "\u{1f6aa} ESC / q / Ctrl-C - quit" + "ESC / q / Ctrl-C - quit" }) .style(Style::default().fg(Color::Red)), );