From 358824562453bca9aeaf8480e4eb32d5b3643ba2 Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Tue, 12 May 2026 20:36:28 +0200 Subject: [PATCH] new message helper --- lib/bbs/tui_helpers.rb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/bbs/tui_helpers.rb b/lib/bbs/tui_helpers.rb index 9390b1c..9985d24 100644 --- a/lib/bbs/tui_helpers.rb +++ b/lib/bbs/tui_helpers.rb @@ -106,14 +106,6 @@ module BBS x: CONT_X, y: CONT_Y + cont_h, style: THEME[:label] end - def render_new_message_form - text 'Type your message and press Enter. Esc cancels.', - x: CONT_X, y: CONT_Y, style: THEME[:normal] - text "#{tc(:bright, @username)}: #{tc(:input, @input)}_", - x: CONT_X, y: CONT_Y + 2 - text @status, x: CONT_X, y: CONT_Y + 4, style: THEME[:error] unless @status.empty? - end - def render_wiki_list list_h = cont_h - 3 visible = @items[@scroll, list_h] || []