From f6dbd6dbd081d76b8fc025bca018c54749297dc1 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Sat, 16 May 2026 09:14:51 -0400 Subject: [PATCH] =?UTF-8?q?v0.10.3:=20input=20area=20speaker=20line=20?= =?UTF-8?q?=E2=80=94=204=20rows=20get=20=E2=94=82=20in=20:input-prompt=20c?= =?UTF-8?q?olor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Consistent with history area: user │ (amber), agent │ (tan), gate │ (grey), and the 4-row input box │ (:input-prompt). --- org/channel-tui-view.org | 3 +++ 1 file changed, 3 insertions(+) diff --git a/org/channel-tui-view.org b/org/channel-tui-view.org index 65d6afd..9324beb 100644 --- a/org/channel-tui-view.org +++ b/org/channel-tui-view.org @@ -209,6 +209,9 @@ Returns a list of strings, one per line." (hint-fg (theme-color :hint))) ;; Light grey input panel: h-7 to h-4 (4 rows), indented by hpad (cl-tty.backend:draw-rect fb hpad (- h 7) inner-w 4 :bg bg-i) + ;; Speaker line for all 4 input rows + (dolist (r (list (- h 7) (- h 6) (- h 5) (- h 4))) + (cl-tty.backend:draw-text fb 0 r "│" (theme-color :input-prompt) nil)) ;; Prompt at h-6, second row at h-5 (placeholder for expansion) (cl-tty.backend:draw-text fb hpad (- h 6) visible input-fg nil) ;; Hint — lowercase, right-aligned at h-2