-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
5.11
-
None
It will inherit the window's font, but not a control's:
import QtQuick 2.9 import QtQuick.Window 2.2 import QtQuick.Controls 2.4 ApplicationWindow { width: 640 height: 480 visible: true // Works // font.family: "Courier New" // Popup { // width: 400 // height: 400 // visible: true // Label { // text: "This Label's font should be Courier New. It is: \"" + font.family + "\"" // } // } Pane { font.family: "Courier New" anchors.fill: parent Popup { width: 400 height: 400 visible: true Label { text: "This Label's font should be Courier New. It is: \"" + font.family + "\"" } } } }