2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick.Controls 2.12
|
2019-07-24 16:14:34 +10:00
|
|
|
import QtQuick 2.12
|
2019-03-22 14:28:14 +11:00
|
|
|
|
|
|
|
Label {
|
2019-07-07 07:50:55 +10:00
|
|
|
font.family: theme.fontFamily.sans
|
|
|
|
font.pixelSize: theme.fontSize.normal
|
2019-08-31 07:04:42 +10:00
|
|
|
font.pointSize: -1
|
2019-04-29 05:36:43 +10:00
|
|
|
textFormat: Label.PlainText
|
2019-05-18 07:47:36 +10:00
|
|
|
|
2019-07-24 16:14:34 +10:00
|
|
|
color: theme.colors.text
|
|
|
|
linkColor: theme.colors.link
|
2019-07-16 18:47:56 +10:00
|
|
|
|
2019-12-10 02:35:50 +11:00
|
|
|
maximumLineCount: elide === Label.ElideNone ? Number.MAX_VALUE : 1
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|