fix(gui): Force newline in discussion entries to prevent squashed layout

- Insert imgui.new_line() before rendering discussion content.
- Ensures the Markdown renderer inherits the full horizontal width of the panel.
- Definitively fixes vertical squashing of tables and long text blocks.
This commit is contained in:
ed
2026-06-02 15:42:04 -04:00
parent fee41032b6
commit 4d8e949720
11 changed files with 485 additions and 44 deletions
@@ -1,7 +1,7 @@
# Implementation Plan: Phase 7 Monolithic Stabilization
## Phase 1: Architecture Consolidation
- [ ] Task: Restore Monolithic Rendering
- [~] Task: Restore Monolithic Rendering
- [ ] WHERE: `src/gui_2.py`
- [ ] WHAT: Move `render_discussion_entry` and related functions from `src/discussion_entry_renderer.py` back to `src/gui_2.py`.
- [ ] HOW: Use `py_update_definition` for surgical insertion. Remove `src/discussion_entry_renderer.py` afterwards.