diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-01-18 10:20:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 10:20:28 +0100 |
commit | 945248052cd35df2dcc2408fdd48f3ea511a0562 (patch) | |
tree | 83a2afd27ef9e318588db3fc3fa6ba9614e93645 | |
parent | fd3011ca9ccc63cd759e75d253b9fec0a2d2a1c3 (diff) | |
parent | a5908ada067eb29eabbf5db74736ef49897df92c (diff) |
Merge pull request #15817 from volzhs/icon-color
Fix Error/Success/Warning icon color
-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(); |