mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-24 21:39:24 +00:00
15 lines
440 B
QML
15 lines
440 B
QML
import QtQuick 2.3
|
|
import "../../../../../shared"
|
|
import "../../../../../imports"
|
|
|
|
StyledTextEdit {
|
|
property bool formatDateTime: false
|
|
id: chatTime
|
|
visible: isMessage
|
|
color: Style.current.darkGrey
|
|
text: formatDateTime ? Utils.formatDateTime(timestamp, appSettings.locale) : Utils.formatTime(timestamp, appSettings.locale)
|
|
font.pixelSize: Style.current.asideTextFontSize
|
|
readOnly: true
|
|
selectByMouse: true
|
|
}
|