status-desktop/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/Retry.qml

22 lines
484 B
QML

import QtQuick 2.3
import "../../../../../shared"
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)
}
}
}