You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Remove redundant "== false" code
Some of this code has been re-organized. f
This commit is contained in:
@@ -63,7 +63,7 @@ void MonoBottomPanel::_update_build_tabs_list() {
|
||||
item_tooltip += "Running";
|
||||
}
|
||||
|
||||
if (!tab->build_exited || !tab->build_result == MonoBuildTab::RESULT_SUCCESS) {
|
||||
if (!tab->build_exited || tab->build_result == MonoBuildTab::RESULT_ERROR) {
|
||||
item_tooltip += "\nErrors: " + itos(tab->error_count);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user