From 0f62eaff6d91501a96ee9e029dc27a1fc38fa2da Mon Sep 17 00:00:00 2001 From: Ed_ Date: Sun, 15 Mar 2026 16:03:54 -0400 Subject: [PATCH] fix(gui): hide empty text edit input in discussion history when entry is standalone monologue --- src/gui_2.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui_2.py b/src/gui_2.py index b649b3c..0fac41a 100644 --- a/src/gui_2.py +++ b/src/gui_2.py @@ -2342,7 +2342,8 @@ def hello(): if self.ui_word_wrap: imgui.pop_text_wrap_pos() imgui.end_child() else: - ch, entry["content"] = imgui.input_text_multiline("##content", entry["content"], imgui.ImVec2(-1, 150)) + if not is_standalone: + ch, entry["content"] = imgui.input_text_multiline("##content", entry["content"], imgui.ImVec2(-1, 150)) imgui.separator() imgui.pop_id() if self._scroll_disc_to_bottom: