From 534416e4a4a9320bec756c1077d2082cc6aabb06 Mon Sep 17 00:00:00 2001 From: Xvvln <3369759202@qq.com> Date: Wed, 13 May 2026 20:29:13 +0800 Subject: [PATCH] fix(tui): show command palette below input --- frontends/tuiapp_v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontends/tuiapp_v2.py b/frontends/tuiapp_v2.py index 2c9cb933..baa3908a 100644 --- a/frontends/tuiapp_v2.py +++ b/frontends/tuiapp_v2.py @@ -744,7 +744,6 @@ def compose(self) -> ComposeResult: yield Static("", id="sidebar") with Vertical(id="main"): yield VerticalScroll(id="messages") - yield OptionList(id="palette") yield InputArea( "", id="input", @@ -754,6 +753,7 @@ def compose(self) -> ComposeResult: highlight_cursor_line=False, placeholder="输入指令或问题... (Enter 发送, Ctrl+J 换行, / 唤起命令面板)", ) + yield OptionList(id="palette") yield Static(render_bottombar(), id="bottombar") def on_mount(self) -> None: