Spectral/qml/component/StateBubble.qml

13 lines
304 B
QML
Raw Normal View History

2018-07-12 01:44:41 +00:00
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
2018-07-10 04:18:21 +00:00
TextDelegate {
maximumWidth: messageListView.width
highlighted: eventType === "emote"
timeLabelVisible: false
authorLabelVisible: false
2018-07-10 04:18:21 +00:00
displayText: "<b>" + author.displayName + "</b> " + display
2018-07-10 04:18:21 +00:00
}