mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 22:53:01 +00:00
Mono: Fix build status icons
This commit is contained in:
parent
d05d4c2bdd
commit
8bd05f0c71
@ -335,16 +335,14 @@ void MonoBuildTab::_update_issues_list() {
|
|||||||
|
|
||||||
Ref<Texture> MonoBuildTab::get_icon_texture() const {
|
Ref<Texture> MonoBuildTab::get_icon_texture() const {
|
||||||
|
|
||||||
// FIXME these icons were removed... find something better
|
|
||||||
|
|
||||||
if (build_exited) {
|
if (build_exited) {
|
||||||
if (build_result == RESULT_ERROR) {
|
if (build_result == RESULT_ERROR) {
|
||||||
return get_icon("DependencyChangedHl", "EditorIcons");
|
return get_icon("StatusError", "EditorIcons");
|
||||||
} else {
|
} else {
|
||||||
return get_icon("DependencyOkHl", "EditorIcons");
|
return get_icon("StatusSuccess", "EditorIcons");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return get_icon("GraphTime", "EditorIcons");
|
return get_icon("Stop", "EditorIcons");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user