diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2018-02-17 18:12:00 +0100 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2018-02-17 18:12:00 +0100 |
commit | 8bd05f0c717032c6b89886c42e8bacd14c20aee9 (patch) | |
tree | 32d4ccfc62cfce761808ec153647fea0a78eac12 /modules/mono/editor | |
parent | d05d4c2bddff05967c8d59137e5c13b576f7cb51 (diff) |
Mono: Fix build status icons
Diffstat (limited to 'modules/mono/editor')
-rw-r--r-- | modules/mono/editor/mono_bottom_panel.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/mono/editor/mono_bottom_panel.cpp b/modules/mono/editor/mono_bottom_panel.cpp index ab62c62616..20378a0162 100644 --- a/modules/mono/editor/mono_bottom_panel.cpp +++ b/modules/mono/editor/mono_bottom_panel.cpp @@ -335,16 +335,14 @@ void MonoBuildTab::_update_issues_list() { Ref<Texture> MonoBuildTab::get_icon_texture() const { - // FIXME these icons were removed... find something better - if (build_exited) { if (build_result == RESULT_ERROR) { - return get_icon("DependencyChangedHl", "EditorIcons"); + return get_icon("StatusError", "EditorIcons"); } else { - return get_icon("DependencyOkHl", "EditorIcons"); + return get_icon("StatusSuccess", "EditorIcons"); } } else { - return get_icon("GraphTime", "EditorIcons"); + return get_icon("Stop", "EditorIcons"); } } |