From 0c446e0620fb0ce1c59883c49b06534e2b795dfe Mon Sep 17 00:00:00 2001 From: kobewi Date: Sat, 8 Feb 2025 21:20:02 +0100 Subject: [PATCH] Fix empty Command Palette --- editor/editor_command_palette.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/editor_command_palette.cpp b/editor/editor_command_palette.cpp index f40307712d4..a83ceb5f860 100644 --- a/editor/editor_command_palette.cpp +++ b/editor/editor_command_palette.cpp @@ -207,6 +207,7 @@ void EditorCommandPalette::open_popup() { if (was_showed) { popup(prev_rect); } else { + _update_command_search(String()); popup_centered_clamped(Size2(600, 440) * EDSCALE, 0.8f); }