diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index c7a41e4441f..b88474e2c38 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -413,6 +413,11 @@ Ref create_editor_theme() { theme->set_stylebox("comment", "GraphNode", graphsbcomment); theme->set_stylebox("commentfocus", "GraphNode", graphsbcommentselected); + // FileDialog + Color disable_color = light_color_2; + disable_color.a = 0.7; + theme->set_color("files_disabled", "FileDialog", disable_color); + return theme; }