Add support for copying & deleting multiple messages at once
BUG: 496458
This commit is contained in:
committed by
Joshua Goins
parent
0f634ff795
commit
f5d726989f
@@ -407,6 +407,13 @@ KirigamiComponents.ConvergentContextMenu {
|
||||
onTriggered: pinned ? root.room.unpinEvent(root.eventId) : root.room.pinEvent(root.eventId)
|
||||
}
|
||||
|
||||
Kirigami.Action {
|
||||
visible: root.messageComponentType !== MessageComponentType.Other
|
||||
text: root.room.selectedMessageCount > 0 && root.room.isMessageSelected(root.eventId) ? i18nc("@action:inmenu", "Deselect Message") : i18nc("@action:inmenu", "Select Message")
|
||||
icon.name: "edit-select-all-symbolic"
|
||||
onTriggered: root.room.toggleMessageSelection(root.eventId)
|
||||
}
|
||||
|
||||
Kirigami.Action {
|
||||
separator: true
|
||||
visible: viewSourceAction.visible
|
||||
|
||||
Reference in New Issue
Block a user