aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Ghinet <samuel.ghinet@qt.io>2023-05-03 12:45:09 +0300
committerThomas Hartmann <thomas.hartmann@qt.io>2023-05-04 06:28:29 +0000
commit2711d96be3c213a64c3e4cddb92c6410b7bcdb7e (patch)
treed71878e38070d4477b2eebab22d5ae92cfd82589
parentcf804bcdb8dde8541ac85acb9ea4c6cbcbe3def2 (diff)
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: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--src/plugins/qmldesigner/components/contentlibrary/contentlibrarywidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmldesigner/components/contentlibrary/contentlibrarywidget.cpp b/src/plugins/qmldesigner/components/contentlibrary/contentlibrarywidget.cpp
index f83fc24185..3d42ac977c 100644
--- a/src/plugins/qmldesigner/components/contentlibrary/contentlibrarywidget.cpp
+++ b/src/plugins/qmldesigner/components/contentlibrary/contentlibrarywidget.cpp
@@ -117,7 +117,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";