summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorSyldraTheCat <syldratube@gmail.com>2022-06-13 11:16:49 +0000
committerSyldraTheCat <syldratube@gmail.com>2022-06-14 12:04:34 +0000
commit8a6acd1d868a6c30a2d40f699f0bcb688fed0558 (patch)
tree782930a05faef503d4eca94f07ba8a999d17ae8c /resources/qml
parentUpdate hidden read receipts MSC (diff)
downloadnheko-8a6acd1d868a6c30a2d40f699f0bcb688fed0558.tar.xz
Subtle corrections to paste behaviors
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/MessageInput.qml10
1 files changed, 2 insertions, 8 deletions
diff --git a/resources/qml/MessageInput.qml b/resources/qml/MessageInput.qml

index 8a5611df..ab37a3a8 100644 --- a/resources/qml/MessageInput.qml +++ b/resources/qml/MessageInput.qml
@@ -188,8 +188,7 @@ Rectangle { Keys.onShortcutOverride: event.accepted = (popup.opened && (event.key === Qt.Key_Escape || event.key === Qt.Key_Tab || event.key === Qt.Key_Enter || event.key === Qt.Key_Space)) Keys.onPressed: { if (event.matches(StandardKey.Paste)) { - room.input.paste(false); - event.accepted = true; + event.accepted = room.input.tryPasteAttachment(false); } else if (event.key == Qt.Key_Space) { // close popup if user enters space after colon if (cursorPosition == completerTriggeredAt + 1) @@ -361,11 +360,6 @@ Rectangle { } Connections { - function onInsertText(text) { - messageInput.remove(messageInput.selectionStart, messageInput.selectionEnd); - messageInput.insert(messageInput.cursorPosition, text); - } - function onTextChanged(newText) { messageInput.text = newText; messageInput.cursorPosition = newText.length; @@ -401,7 +395,7 @@ Rectangle { anchors.fill: parent acceptedButtons: Qt.MiddleButton cursorShape: Qt.IBeamCursor - onClicked: room.input.paste(true) + onPressed: (mouse) => mouse.accepted = room.input.tryPasteAttachment(true) } }