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