summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvolzhs <volzhs@gmail.com>2019-12-20 17:13:31 +0900
committervolzhs <volzhs@gmail.com>2019-12-20 17:13:31 +0900
commit1acbbfc3f1f22a17f2712dc6dd93906997e55750 (patch)
treec63fd69a41dc0842a4a8cae1c57dfbaee376e7d3
parent2a4c528d067826dd1af865c93c3dc945c9a0e196 (diff)
Set proper icons for FileDialog in editor theme
-rw-r--r--editor/editor_themes.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp
index 6b71ee14d5..a38d6d1f21 100644
--- a/editor/editor_themes.cpp
+++ b/editor/editor_themes.cpp
@@ -1106,6 +1106,9 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
// FileDialog
theme->set_icon("folder", "FileDialog", theme->get_icon("Folder", "EditorIcons"));
+ theme->set_icon("parent_folder", "FileDialog", theme->get_icon("ArrowUp", "EditorIcons"));
+ theme->set_icon("reload", "FileDialog", theme->get_icon("Reload", "EditorIcons"));
+ theme->set_icon("toggle_hidden", "FileDialog", theme->get_icon("GuiVisibilityVisible", "EditorIcons"));
// Use a different color for folder icons to make them easier to distinguish from files.
// On a light theme, the icon will be dark, so we need to lighten it before blending it with the accent color.
theme->set_color("folder_icon_modulate", "FileDialog", (dark_theme ? Color(1, 1, 1) : Color(4.25, 4.25, 4.25)).linear_interpolate(accent_color, 0.7));