ui/qml/widgets/ScalingLabel.qml

15 lines
313 B
QML
Raw Normal View History

2018-10-28 02:49:14 +00:00
import QtGraphicalEffects 1.0
import QtQuick 2.7
import QtQuick.Controls 2.4
import QtQuick.Controls.Material 2.0
import QtQuick.Layouts 1.3
2018-10-30 19:50:41 +00:00
import QtQuick.Window 2.11
2018-10-28 02:49:14 +00:00
2018-10-30 19:50:41 +00:00
Label {
2018-11-22 00:01:17 +00:00
font.pixelSize: gcd.themeScale * size
2018-10-30 19:50:41 +00:00
wrapMode: Text.WordWrap
color: "#000000"
textFormat: Text.PlainText
2018-10-30 19:50:41 +00:00
property real size: 12
2018-10-28 02:49:14 +00:00
}