2020-07-15 21:04:14 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
import "../../../../../shared"
|
|
|
|
import "../../../../../imports"
|
|
|
|
|
|
|
|
StyledTextEdit {
|
|
|
|
id: chatTime
|
2020-07-20 17:34:20 +00:00
|
|
|
visible: isMessage
|
2020-07-15 21:04:14 +00:00
|
|
|
color: Style.current.darkGrey
|
2020-08-26 15:15:40 +00:00
|
|
|
text: Utils.formatTime(timestamp)
|
2020-11-25 10:46:18 +00:00
|
|
|
font.pixelSize: Style.current.asideTextFontSize
|
2020-07-15 21:04:14 +00:00
|
|
|
readOnly: true
|
|
|
|
selectByMouse: true
|
|
|
|
}
|