diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-02-27 21:08:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-27 21:08:39 +0100 |
commit | eaf909dcf9acf40f64fbb5f7595a2902e563c96b (patch) | |
tree | 587561102fa38cf7b12fe4acafb749e030534507 /editor | |
parent | 38c78a9ab637bc6ecdbdb8d09b34b9754dcb1b35 (diff) | |
parent | 5dd851e8494cb57214e551194d3732f95e4f25eb (diff) |
Merge pull request #36490 from Calinou/assetlib-error-version-compatibility
Mention version compatibility when there are no results in the assetlib
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/asset_library_editor_plugin.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp index 01c3c33995..c8cbc59e45 100644 --- a/editor/plugins/asset_library_editor_plugin.cpp +++ b/editor/plugins/asset_library_editor_plugin.cpp @@ -1210,7 +1210,16 @@ void EditorAssetLibrary::_http_request_completed(int p_status, int p_code, const library_vb->add_child(asset_bottom_page); if (result.empty()) { - library_error->set_text(vformat(TTR("No results for \"%s\"."), filter->get_text())); + if (filter->get_text() != String()) { + library_error->set_text( + vformat(TTR("No results for \"%s\"."), filter->get_text())); + } else { + // No results, even though the user didn't search for anything specific. + // This is typically because the version number changed recently + // and no assets compatible with the new version have been published yet. + library_error->set_text( + vformat(TTR("No results compatible with %s %s."), String(VERSION_SHORT_NAME).capitalize(), String(VERSION_BRANCH))); + } library_error->show(); } |