From 971b35f721750741296c193cd1ad5ad1852e46cb Mon Sep 17 00:00:00 2001 From: Samuel Ghinet Date: Wed, 3 May 2023 12:45:09 +0300 Subject: [PATCH] QmlDesigner: Remove version from textures URL for the Content Library The URL for textures should not have a version number. Change-Id: Ifb0103d8420f9f3b3269657875ca184533700da5 Reviewed-by: Miikka Heikkinen --- .../components/contentlibrary/contentlibrarywidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/components/contentlibrary/contentlibrarywidget.cpp b/src/plugins/qmldesigner/components/contentlibrary/contentlibrarywidget.cpp index b1e7868749c..9cc9576bc6c 100644 --- a/src/plugins/qmldesigner/components/contentlibrary/contentlibrarywidget.cpp +++ b/src/plugins/qmldesigner/components/contentlibrary/contentlibrarywidget.cpp @@ -118,7 +118,7 @@ ContentLibraryWidget::ContentLibraryWidget() m_baseUrl = QmlDesignerPlugin::settings() .value(DesignerSettingsKey::DOWNLOADABLE_BUNDLES_URL).toString() - + "/textures/v1"; + + "/textures"; m_texturesUrl = m_baseUrl + "/Textures"; m_environmentsUrl = m_baseUrl + "/Environments";