moment/src/gui/Base/HLabel.qml
miruka 229fbee298 Remove HRichLabel component
Sparsly used and inflexible, just use HLabel
2020-07-12 00:13:52 -04:00

19 lines
427 B
QML

// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick.Controls 2.12
import QtQuick 2.12
Label {
font.family: theme.fontFamily.sans
font.pixelSize: theme.fontSize.normal
font.pointSize: -1
textFormat: Label.PlainText
color: theme.colors.text
linkColor: theme.colors.link
maximumLineCount: elide === Label.ElideNone ? Number.MAX_VALUE : 1
onLinkActivated: Qt.openUrlExternally(link)
}