diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-12-01 14:01:46 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-12-01 14:01:46 -0600 |
| commit | 6182d85f7ea2d36c8b6b29cf88465b8387671a91 (patch) | |
| tree | df0c1041adacfe94683f0190aa042bd31a0cccf6 | |
| parent | 41326d0a8d7763667aad80fbcae1e329e7ccda8b (diff) | |
| parent | 01209b11b96bc9af92acae460af98dde1c51c062 (diff) | |
| download | monzero-gui-6182d85f7ea2d36c8b6b29cf88465b8387671a91.tar.gz monzero-gui-6182d85f7ea2d36c8b6b29cf88465b8387671a91.tar.xz monzero-gui-6182d85f7ea2d36c8b6b29cf88465b8387671a91.zip | |
Merge pull request #1767
01209b1 SettingsNode: make TextArea readOnly (mmbyday)
| -rw-r--r-- | pages/settings/SettingsNode.qml | 2 |
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 |
