You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/vr/qml/common/MyText.qml

16 lines
305 B

import QtQuick 2.7
import QtQuick.Controls 2.0
import "."
Text {
property bool wrap: false
property int fontSize: 24
property bool fontBold: false
property string fontColor: Style.fontColor
color: fontColor
font.bold: fontBold
font.pointSize: fontSize
wrapMode: wrap ? Text.Wrap : Text.NoWrap
}