Make composer/eventList ctrl-c work again

This commit is contained in:
miruka
2020-03-26 21:23:43 -04:00
parent a61f1d5d04
commit 18f53829d9
6 changed files with 37 additions and 31 deletions

View File

@@ -3,6 +3,7 @@
import QtQuick 2.12
import QtQuick.Layouts 1.12
import QtQuick.Window 2.12
import Clipboard 0.1
import "../../.."
import "../../../Base"
@@ -77,8 +78,24 @@ Rectangle {
width < theme.chat.eventList.ownEventsOnRightUnderWidth
property string delegateWithSelectedText: ""
property string selectedText: ""
function copySelectedDelegates() {
if (eventList.selectedText) {
Clipboard.text = eventList.selectedText
return
}
const contents = []
for (const model of eventList.getSortedCheckedDelegates()) {
contents.push(JSON.parse(model.source).body)
}
Clipboard.text = contents.join("\n\n")
}
function canCombine(item, itemAfter) {
if (! item || ! itemAfter) return false