From 01209b11b96bc9af92acae460af98dde1c51c062 Mon Sep 17 00:00:00 2001 From: mmbyday Date: Fri, 30 Nov 2018 04:34:14 +0200 Subject: [PATCH] SettingsNode: make TextArea readOnly --- pages/settings/SettingsNode.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pages/settings/SettingsNode.qml b/pages/settings/SettingsNode.qml index 53bfbb21..8a7b3926 100644 --- a/pages/settings/SettingsNode.qml +++ b/pages/settings/SettingsNode.qml @@ -131,6 +131,7 @@ Rectangle{ topPadding: 0 text: qsTr("The blockchain is downloaded to your computer. Provides higher security and requires more local storage.") + translationManager.emptyString width: parent.width - (localNodeIcon.width + localNodeIcon.anchors.leftMargin + anchors.leftMargin) + readOnly: true // @TODO: Legacy. Remove after Qt 5.8. // https://stackoverflow.com/questions/41990013 @@ -231,6 +232,7 @@ Rectangle{ topPadding: 0 text: qsTr("Uses a third-party server to connect to the Monero network. Less secure, but easier on your computer.") + translationManager.emptyString width: parent.width - (remoteNodeIcon.width + remoteNodeIcon.anchors.leftMargin + anchors.leftMargin) + readOnly: true // @TODO: Legacy. Remove after Qt 5.8. // https://stackoverflow.com/questions/41990013