From 0d16ffbcaad8b3c746d15eaa1c3a3b6334919bb3 Mon Sep 17 00:00:00 2001 From: Chaosus Date: Fri, 17 Aug 2018 09:19:44 +0300 Subject: [PATCH] Fix error icon color --- editor/editor_themes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index 3995eb3dd66..69a013dd00e 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -173,7 +173,7 @@ void editor_register_and_generate_icons(Ref p_theme, bool p_dark_theme = const Color error_color = p_theme->get_color("error_color", "Editor"); const Color success_color = p_theme->get_color("success_color", "Editor"); const Color warning_color = p_theme->get_color("warning_color", "Editor"); - dark_icon_color_dictionary[Color::html("#ff5d5d")] = error_color; + dark_icon_color_dictionary[Color::html("#ff0000")] = error_color; dark_icon_color_dictionary[Color::html("#45ff8b")] = success_color; dark_icon_color_dictionary[Color::html("#dbab09")] = warning_color;