This commit is contained in:
ed
2026-06-13 12:02:21 -04:00
parent 9fc2c21e82
commit f2fa566064
+1 -1
View File
@@ -3673,7 +3673,7 @@ def render_ast_inspector_modal(app: App) -> None:
if imgui.collapsing_header("AST Tree", imgui.TreeNodeFlags_.default_open): if imgui.collapsing_header("AST Tree", imgui.TreeNodeFlags_.default_open):
if not getattr(app, '_cached_ast_nodes', None): imgui.text("No AST nodes found.") if not getattr(app, '_cached_ast_nodes', None): imgui.text("No AST nodes found.")
else: else:
with imscope.table('ast tree members', 2, imgui.TableFlags_.resizable | imgui.TableFlags_.sizing_stretch_prop) with imscope.table('ast tree members', 2, imgui.TableFlags_.resizable | imgui.TableFlags_.sizing_stretch_prop):
imgui.table_setup_column("symbol", imgui.TableColumnFlags_.width_fixed, 400) imgui.table_setup_column("symbol", imgui.TableColumnFlags_.width_fixed, 400)
imgui.table_setup_column("option", imgui.TableColumnFlags_.width_stretch) imgui.table_setup_column("option", imgui.TableColumnFlags_.width_stretch)
imgui.table_next_row() imgui.table_next_row()