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,6 +2342,7 @@ def hello():
if self.ui_word_wrap: imgui.pop_text_wrap_pos() if self.ui_word_wrap: imgui.pop_text_wrap_pos()
imgui.end_child() imgui.end_child()
else: else:
if not is_standalone:
ch, entry["content"] = imgui.input_text_multiline("##content", entry["content"], imgui.ImVec2(-1, 150)) ch, entry["content"] = imgui.input_text_multiline("##content", entry["content"], imgui.ImVec2(-1, 150))
imgui.separator() imgui.separator()
imgui.pop_id() imgui.pop_id()