2020-07-14 15:35:21 +00:00
|
|
|
|
|
|
|
import QtQuick 2.3
|
|
|
|
import "../../../../../shared"
|
|
|
|
import "../../../../../imports"
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
id: retryLbl
|
|
|
|
color: Style.current.red
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Resend"
|
|
|
|
text: qsTrId("resend-message")
|
2020-11-25 10:46:18 +00:00
|
|
|
font.pixelSize: Style.current.tertiaryTextFontSize
|
2020-07-16 17:27:09 +00:00
|
|
|
visible: isCurrentUser && (timeout || isExpired)
|
2020-07-14 15:35:21 +00:00
|
|
|
MouseArea {
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
2021-06-21 19:35:32 +00:00
|
|
|
chatsModel.messageView.resendMessage(chatId, messageId)
|
2020-07-14 15:35:21 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-25 10:46:18 +00:00
|
|
|
}
|