moment/src/gui/Base/HLabel.qml

19 lines
427 B
QML
Raw Normal View History

2019-12-19 07:46:16 -04:00
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick.Controls 2.12
import QtQuick 2.12
2019-03-21 23:28:14 -04:00
Label {
font.family: theme.fontFamily.sans
font.pixelSize: theme.fontSize.normal
font.pointSize: -1
2019-04-28 15:36:43 -04:00
textFormat: Label.PlainText
2019-05-17 17:47:36 -04:00
color: theme.colors.text
linkColor: theme.colors.link
2019-12-09 11:35:50 -04:00
maximumLineCount: elide === Label.ElideNone ? Number.MAX_VALUE : 1
onLinkActivated: Qt.openUrlExternally(link)
2019-03-21 23:28:14 -04:00
}