|
@@ -435,7 +435,10 @@ void EditorAssetLibraryItemDownload::_notification(int p_what) {
|
|
String::humanize_size(download->get_body_size())));
|
|
String::humanize_size(download->get_body_size())));
|
|
} else {
|
|
} else {
|
|
// Total file size is unknown, so it cannot be displayed.
|
|
// Total file size is unknown, so it cannot be displayed.
|
|
- status->set_text(TTR("Downloading..."));
|
|
|
|
|
|
+ progress->set_modulate(Color(0, 0, 0, 0));
|
|
|
|
+ status->set_text(vformat(
|
|
|
|
+ TTR("Downloading...") + " (%s)",
|
|
|
|
+ String::humanize_size(download->get_downloaded_bytes())));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|