Explorar o código

Mono: Fix build status icons

Ignacio Etcheverry %!s(int64=7) %!d(string=hai) anos
pai
achega
8bd05f0c71
Modificáronse 1 ficheiros con 3 adicións e 5 borrados
  1. 3 5
      modules/mono/editor/mono_bottom_panel.cpp

+ 3 - 5
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");
 	}
 }