status-desktop/ui/app/AppLayouts/Chat/controls/Retry.qml

27 lines
608 B
QML
Raw Normal View History

2020-07-14 15:35:21 +00:00
import QtQuick 2.3
import "../../../../shared"
import "../../../../shared/panels"
import utils 1.0
2020-07-14 15:35:21 +00:00
StyledText {
id: retryLbl
color: Style.current.red
2020-08-26 15:52:26 +00:00
//% "Resend"
text: qsTrId("resend-message")
font.pixelSize: Style.current.tertiaryTextFontSize
visible: isCurrentUser && (timeout || isExpired)
property bool isCurrentUser: false
property bool isExpired: false
property bool timeout: false
signal clicked()
2020-07-14 15:35:21 +00:00
MouseArea {
cursorShape: Qt.PointingHandCursor
anchors.fill: parent
onClicked: {
retryLbl.clicked();
2020-07-14 15:35:21 +00:00
}
}
}