summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-02-17 19:02:58 +0100
committerGitHub <noreply@github.com>2018-02-17 19:02:58 +0100
commit3cdca984e0e999847801894038a685a6b693b3e6 (patch)
tree200037f9def43cb5879168f33dad2c375ee5c47e /modules
parentdf522cf4e1ee26798359b538f0ad5d0c3116af47 (diff)
parent8bd05f0c717032c6b89886c42e8bacd14c20aee9 (diff)
Merge pull request #16780 from neikeq/mono-fix-build-icons
Mono: Fix build status icons
Diffstat (limited to 'modules')
-rw-r--r--modules/mono/editor/mono_bottom_panel.cpp8
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");
}
}