QmlDesigner: Support QtQuick 6.0 import

Change-Id: Ie6e752d58fb5a0c7989ab5c47166c6d08937d8d5
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Thomas Hartmann
2021-04-29 22:42:55 +02:00
parent 005b604b9c
commit f22ae0a726

View File

@@ -78,10 +78,24 @@ bool isSupportedAttachedProperties(const QString &propertyName)
QStringList supportedVersionsList()
{
static const QStringList list = {
"2.0", "2.1", "2.2", "2.3", "2.4", "2.5", "2.6", "2.7", "2.8", "2.9",
"2.10", "2.11", "2.12", "2.13", "2.14", "2.15"
};
static const QStringList list = {"2.0",
"2.1",
"2.2",
"2.3",
"2.4",
"2.5",
"2.6",
"2.7",
"2.8",
"2.9",
"2.10",
"2.11",
"2.12",
"2.13",
"2.14",
"2.15",
"6.0",
"6.1"};
return list;
}