From 91996ac1fc9aa91e757c2b59676318cdb84b5fa3 Mon Sep 17 00:00:00 2001 From: Dexter Date: Sun, 30 Nov 2025 11:50:43 +0330 Subject: [PATCH] Add missing icons to QuickOpen context menu --- editor/gui/editor_quick_open_dialog.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/gui/editor_quick_open_dialog.cpp b/editor/gui/editor_quick_open_dialog.cpp index 165d6d3c237..8838d6b460f 100644 --- a/editor/gui/editor_quick_open_dialog.cpp +++ b/editor/gui/editor_quick_open_dialog.cpp @@ -1010,6 +1010,9 @@ void QuickOpenResultContainer::_notification(int p_what) { file_details_path->add_theme_color_override(SceneStringName(font_color), text_color); no_results_label->add_theme_color_override(SceneStringName(font_color), text_color); + file_context_menu->set_item_icon(FILE_SHOW_IN_FILESYSTEM, get_editor_theme_icon(SNAME("ShowInFileSystem"))); + file_context_menu->set_item_icon(FILE_SHOW_IN_FILE_MANAGER, get_editor_theme_icon(SNAME("Filesystem"))); + panel_container->add_theme_style_override(SceneStringName(panel), get_theme_stylebox(SceneStringName(panel), SNAME("Tree"))); if (content_display_mode == QuickOpenDisplayMode::LIST) {