From e340e9f845a23928b37b85fcb7f38294c0ab5fd4 Mon Sep 17 00:00:00 2001 From: Atanas Janeshliev Date: Wed, 25 Dec 2024 15:04:06 +0100 Subject: [PATCH] fix(BRIDGE-143): added missing qml component attribute; cut/paste disabled on read only text areas --- internal/frontend/bridge-gui/bridge-gui/qml/Proton/TextArea.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/frontend/bridge-gui/bridge-gui/qml/Proton/TextArea.qml b/internal/frontend/bridge-gui/bridge-gui/qml/Proton/TextArea.qml index 3ff6f376..081b7b9a 100644 --- a/internal/frontend/bridge-gui/bridge-gui/qml/Proton/TextArea.qml +++ b/internal/frontend/bridge-gui/bridge-gui/qml/Proton/TextArea.qml @@ -366,5 +366,6 @@ FocusScope { Proton.ContextMenu { parentObject: root colorScheme: root.colorScheme + readOnly: control.readOnly } }