aboutsummaryrefslogtreecommitdiff
path: root/modules/mono/editor/mono_bottom_panel.cpp
diff options
context:
space:
mode:
authorIgnacio Etcheverry2018-02-17 18:12:00 +0100
committerHein-Pieter van Braam2018-02-19 22:40:21 +0100
commit2abbdcaa20b79015a1356170636f1f2e230ee490 (patch)
tree89ae51ce644287f6d7253d265c8b1ab2874d7a4f /modules/mono/editor/mono_bottom_panel.cpp
parent9cba5ef772e8a4e354bef939a71565d22e304470 (diff)
downloadgodot-2abbdcaa20b79015a1356170636f1f2e230ee490.tar.gz
godot-2abbdcaa20b79015a1356170636f1f2e230ee490.tar.zst
godot-2abbdcaa20b79015a1356170636f1f2e230ee490.zip
Mono: Fix build status icons
(cherry picked from commit 8bd05f0c717032c6b89886c42e8bacd14c20aee9)
Diffstat (limited to '')
-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 ab62c6261..20378a016 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");
}
}