From 19c7a6e449453ab4d9322a80d51446512f194068 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Tue, 2 Jun 2026 22:08:49 -0400 Subject: [PATCH] fix(palette): remove unsupported closable kwarg from imgui.begin --- src/command_palette.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command_palette.py b/src/command_palette.py index 97a1498e..73c364da 100644 --- a/src/command_palette.py +++ b/src/command_palette.py @@ -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()