diff options
author | dankan1890 <mewuidev2@gmail.com> | 2020-01-18 12:51:20 +0100 |
---|---|---|
committer | dankan1890 <mewuidev2@gmail.com> | 2020-01-18 21:07:51 +0100 |
commit | 29daba5b0cd52ea2a0a684ab566f4b6f1baafdb8 (patch) | |
tree | e17eb7eff1dad03d0f63aee49d6f0d70f750f2eb | |
parent | f6a02b881afbd1c46a25bd06eeae709de2e1a6ab (diff) |
AssetLibrary when the download size is unknown:
hidden progress bar
added in the description the downloaded bytes
Fixes #35267
-rw-r--r-- | editor/plugins/asset_library_editor_plugin.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp index bdef108ef2..c1f62e8342 100644 --- a/editor/plugins/asset_library_editor_plugin.cpp +++ b/editor/plugins/asset_library_editor_plugin.cpp @@ -435,7 +435,10 @@ void EditorAssetLibraryItemDownload::_notification(int p_what) { String::humanize_size(download->get_body_size()))); } else { // 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()))); } } |