Details
-
Bug
-
Resolution: Invalid
-
P3: Somewhat important
-
None
-
6.8.1
-
None
Description
See https://doc.qt.io/qt-6/qml-qtquick-application.html#font-prop
I didn't check if the other properties have the same issue.
Code
import QtQuick Window { id: window width: 640 height: 480 visible: true title: Qt.application.font.family }
Outcomes
- The window title shows the default font family ("Segoe UI" on Windows) (Expected)
- qmllint and qmlls say that the property is missing (Not Expected):
Warning: C:/ProgramData/QtCreator/Links/0dfc17b9fe633cd6508d62423b0925eb/Main.qml:8:24: Member "font" not found on type "QQmlApplication" [missing-property] title: Qt.application.font.family ^^^^