Private
Public Access
0
0

fix(palette): remove unsupported closable kwarg from imgui.begin

This commit is contained in:
2026-06-02 22:08:49 -04:00
parent 78e4cd54d8
commit 19c7a6e449
+1 -1
View File
@@ -123,7 +123,7 @@ def render_palette_modal(app: Any, commands: List[Command]) -> None:
app.show_command_palette = False
return
expanded, _ = imgui.begin("Command Palette##manual_slop", closable=True)
expanded, _ = imgui.begin("Command Palette##manual_slop")
if not expanded:
app.show_command_palette = False
imgui.end()