mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 07:14:37 +00:00
8b74141b99
Closes #737
14 lines
309 B
QML
14 lines
309 B
QML
import QtQuick 2.3
|
|
import "../../../../../shared"
|
|
import "../../../../../imports"
|
|
|
|
StyledTextEdit {
|
|
id: chatTime
|
|
visible: isMessage
|
|
color: Style.current.darkGrey
|
|
text: Utils.formatTime(timestamp)
|
|
font.pixelSize: Style.current.asideTextFontSize
|
|
readOnly: true
|
|
selectByMouse: true
|
|
}
|