2020-07-14 15:35:21 +00:00
|
|
|
|
|
|
|
import QtQuick 2.3
|
|
|
|
import "../../../../../shared"
|
|
|
|
import "../../../../../imports"
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
id: retryLbl
|
|
|
|
color: Style.current.red
|
|
|
|
text: qsTr("Resend")
|
|
|
|
font.pixelSize: 12
|
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: {
|
|
|
|
chatsModel.resendMessage(chatId, messageId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|