Files
neochat/imports/Spectral/Component/Timeline/TimelineLabel.qml
Black Hat a8b159b98a Use AutoTextField.
Fix #81.
2018-10-16 08:16:54 +08:00

18 lines
387 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
import Spectral.Setting 0.1
Label {
property bool coloredBackground
color: coloredBackground ? "white": Material.foreground
wrapMode: Label.Wrap
linkColor: coloredBackground ? "white" : Material.accent
textFormat: Text.RichText
onLinkActivated: Qt.openUrlExternally(link)
}