mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-21 11:59:28 +00:00
25 lines
555 B
QML
25 lines
555 B
QML
import QtQuick 2.14
|
|
import shared 1.0
|
|
import shared.panels 1.0
|
|
|
|
import StatusQ.Controls 0.1 as StatusQ
|
|
import utils 1.0
|
|
|
|
StyledText {
|
|
id: chatTime
|
|
color: Style.current.secondaryText
|
|
text: Utils.formatTime(timestamp)
|
|
font.pixelSize: Style.current.asideTextFontSize
|
|
//property string timestamp
|
|
|
|
StatusQ.StatusToolTip {
|
|
visible: hhandler.hovered
|
|
text: new Date(parseInt(timestamp, 10)).toLocaleString(Qt.locale(localAppSettings.locale))
|
|
maxWidth: 350
|
|
}
|
|
|
|
HoverHandler {
|
|
id: hhandler
|
|
}
|
|
}
|