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
|
|
|
|
2018-08-05 10:06:57 +00:00
|
|
|
TextDelegate {
|
|
|
|
maximumWidth: messageListView.width
|
|
|
|
highlighted: eventType === "emote"
|
|
|
|
timeLabelVisible: false
|
2018-07-10 04:18:21 +00:00
|
|
|
|
2018-08-05 10:06:57 +00:00
|
|
|
displayText: "<b>" + author.displayName + "</b> " + display
|
2018-07-10 04:18:21 +00:00
|
|
|
}
|