mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-21 02:58:55 +00:00
23 lines
522 B
QML
23 lines
522 B
QML
|
|
import QtQuick 2.3
|
|
import "../../../../../shared"
|
|
import "../../../../../shared/panels"
|
|
|
|
import utils 1.0
|
|
|
|
StyledText {
|
|
id: retryLbl
|
|
color: Style.current.red
|
|
//% "Resend"
|
|
text: qsTrId("resend-message")
|
|
font.pixelSize: Style.current.tertiaryTextFontSize
|
|
visible: isCurrentUser && (timeout || isExpired)
|
|
MouseArea {
|
|
cursorShape: Qt.PointingHandCursor
|
|
anchors.fill: parent
|
|
onClicked: {
|
|
chatsModel.messageView.resendMessage(chatId, messageId)
|
|
}
|
|
}
|
|
}
|