Where did Settings QML type go in 6.2?
-
It was in Qt.labs.settings, but now doesn't exist? I can't find any mention in release notes for the motivation or what should be used instead? It was present in 6.1.
-
It was in Qt.labs.settings, but now doesn't exist? I can't find any mention in release notes for the motivation or what should be used instead? It was present in 6.1.
It still seems to be there in the dev branch (Qt 6.4): https://doc-snapshots.qt.io/qt6-dev/qml-qt-labs-settings-settings.html
I can import Qt.labs.settings and get code completion for the module and Settings type in Qt Creator.
-
Ah - figured this out.
The pypi dist for PySide6 includes Qt C++ shared libs and the Qt.labs.settings QML type.
venv/lib/python3.8/site-packages/PySide6/Qt/lib/libQt6LabsSettings.so.6And just to make life difficult the pypi PyQt6 dist does not.