moment/src/gui/Popups/ClearMessagesPopup.qml

18 lines
432 B
QML
Raw Normal View History

2019-09-09 20:23:46 +10:00
import QtQuick 2.12
2019-09-09 22:57:38 +10:00
BoxPopup {
summary.text: qsTr("Clear this room's messages?")
details.text: qsTr(
2019-09-09 20:23:46 +10:00
"The messages will only be removed on your side. " +
"They will be available again after you restart the application."
)
okText: qsTr("Clear")
box.focusButton: "ok"
2019-09-09 20:23:46 +10:00
onOk: py.callClientCoro(userId, "clear_events", [roomId])
property string userId: ""
property string roomId: ""
}