fix(gui): hide empty text edit input in discussion history when entry is standalone monologue

This commit is contained in:
2026-03-15 16:03:54 -04:00
parent 5285bc68f9
commit 0f62eaff6d

View File

@@ -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: