12 lines
190 B
QML
12 lines
190 B
QML
|
pragma Strict
|
||
|
import QtQuick
|
||
|
|
||
|
QtObject {
|
||
|
property var font: Qt.font({
|
||
|
"family": "Arial",
|
||
|
"weight": Font.Normal,
|
||
|
"italic": false,
|
||
|
"pixelSize": 32
|
||
|
})
|
||
|
}
|