From 426faa26736d1ccd48e60d40454faaa510625a90 Mon Sep 17 00:00:00 2001 From: miruka Date: Sun, 17 Jan 2021 13:40:21 -0400 Subject: [PATCH] Improve RedactPopup multi-sender warning Give reason why we can't delete all the selected messages when selection contains a mix of own and other user messages and we don't permission to remove them. --- src/gui/Popups/RedactPopup.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/Popups/RedactPopup.qml b/src/gui/Popups/RedactPopup.qml index f2e56389..e66e2d2c 100644 --- a/src/gui/Popups/RedactPopup.qml +++ b/src/gui/Popups/RedactPopup.qml @@ -66,7 +66,8 @@ HFlickableColumnPopup { color: theme.colors.warningText text: onlyOwnMessageWarning ? - qsTr("Only your messages can be removed") : + qsTr("Only your messages will be removed due this " + + "room's permissions") : "" }