diff options
author | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-10-04 22:41:57 +0400 |
---|---|---|
committer | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-10-05 00:20:19 +0400 |
commit | 08af57fb8635eec8a469f7255ba3c3eb39990bb4 (patch) | |
tree | f289b0d74a5ae4480aee8a8e2f1866fa961efab2 | |
parent | 3576e840c7c699dbd21c9c02ec652dafc48e764c (diff) | |
download | redot-engine-08af57fb8635eec8a469f7255ba3c3eb39990bb4.tar.gz |
Fix quick open background panel style
-rw-r--r-- | editor/gui/editor_quick_open_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/gui/editor_quick_open_dialog.cpp b/editor/gui/editor_quick_open_dialog.cpp index 83b11e7022..94a5ff94a3 100644 --- a/editor/gui/editor_quick_open_dialog.cpp +++ b/editor/gui/editor_quick_open_dialog.cpp @@ -709,7 +709,7 @@ 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); - panel_container->add_theme_style_override(SceneStringName(panel), get_theme_stylebox(SNAME("QuickOpenBackgroundPanel"), EditorStringName(EditorStyles))); + panel_container->add_theme_style_override(SceneStringName(panel), get_theme_stylebox(SceneStringName(panel), SNAME("Tree"))); if (content_display_mode == QuickOpenDisplayMode::LIST) { display_mode_toggle->set_icon(get_editor_theme_icon(SNAME("FileThumbnail"))); |