mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 06:47:01 +00:00
14 lines
280 B
QML
14 lines
280 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: 10
|
|
readOnly: true
|
|
selectByMouse: true
|
|
}
|