diff options
author | volzhs <volzhs@gmail.com> | 2018-01-18 04:15:22 +0900 |
---|---|---|
committer | volzhs <volzhs@gmail.com> | 2018-01-18 04:15:22 +0900 |
commit | a5908ada067eb29eabbf5db74736ef49897df92c (patch) | |
tree | 450947c066b2c46f05a842bad2196841ddf44f04 | |
parent | 1968cc445cc3f9dfaa96adc9671c025e0d7b743e (diff) |
Fix Error/Success/Warning icon color
Fix #15781
Fix #15757
-rw-r--r-- | editor/editor_themes.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index 9f031b5a80..9125f5f670 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -193,6 +193,10 @@ void editor_register_and_generate_icons(Ref<Theme> p_theme, bool p_dark_theme = exceptions.push_back("ZoomReset"); exceptions.push_back("LockViewport"); exceptions.push_back("GroupViewport"); + exceptions.push_back("StatusError"); + exceptions.push_back("StatusSuccess"); + exceptions.push_back("StatusWarning"); + exceptions.push_back("NodeWarning"); clock_t begin_time = clock(); |