aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormmbyday <bromark@protonmail.com>2018-11-30 04:34:14 +0200
committermmbyday <bromark@protonmail.com>2018-11-30 04:34:14 +0200
commit01209b11b96bc9af92acae460af98dde1c51c062 (patch)
tree986c9ed8e6f0dc90d57738607cfd889998d5e19d
parent45781ab4a173fe0a747ed72140e10d18765b007e (diff)
downloadmonzero-gui-01209b11b96bc9af92acae460af98dde1c51c062.tar.gz
monzero-gui-01209b11b96bc9af92acae460af98dde1c51c062.tar.xz
monzero-gui-01209b11b96bc9af92acae460af98dde1c51c062.zip
SettingsNode: make TextArea readOnly
-rw-r--r--pages/settings/SettingsNode.qml2
1 files changed, 2 insertions, 0 deletions
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