fix(gui): remove redundant open_popup call for AST Inspector

begin_popup_modal handles its own open state, open_popup was causing the modal to not appear
This commit is contained in:
2026-05-10 22:21:06 -04:00
parent de3dfec4de
commit fc2456506a
-1
View File
@@ -2902,7 +2902,6 @@ class App:
imgui.same_line() imgui.same_line()
if imgui.button(f"[Inspect]##{i}"): if imgui.button(f"[Inspect]##{i}"):
self.ui_inspecting_ast_file = f_item self.ui_inspecting_ast_file = f_item
imgui.open_popup('AST Inspector')
imgui.same_line() imgui.same_line()
if imgui.button(f"[Slices]##{i}"): if imgui.button(f"[Slices]##{i}"):