status-desktop/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatTime.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
}