diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-03-18 11:48:47 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-03-18 11:48:47 +0200 |
| commit | aeea9ad3248540f16b225bfe3a4b7a0d30ef8fa9 (patch) | |
| tree | f62cd50073c39ec0110013eb7fc77b796d659830 | |
| parent | 8655076b92c9f3136454158325c7168381af8c6e (diff) | |
| parent | 53d7962eaa6d33c6bcf888b56ad44d793c877dd5 (diff) | |
| download | monzero-gui-aeea9ad3248540f16b225bfe3a4b7a0d30ef8fa9.tar.gz monzero-gui-aeea9ad3248540f16b225bfe3a4b7a0d30ef8fa9.tar.xz monzero-gui-aeea9ad3248540f16b225bfe3a4b7a0d30ef8fa9.zip | |
Merge pull request #562
53d7962 Improve text wrap on mining page (Michael Campagnaro)
| -rw-r--r-- | pages/Mining.qml | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/pages/Mining.qml b/pages/Mining.qml index 4c292560..7110e99a 100644 --- a/pages/Mining.qml +++ b/pages/Mining.qml @@ -50,7 +50,9 @@ Rectangle { /* main layout */ ColumnLayout { id: mainLayout - anchors.margins: 10 + anchors.margins: 40 + anchors.bottomMargin: 10 + anchors.left: parent.left anchors.top: parent.top anchors.right: parent.right @@ -60,7 +62,6 @@ Rectangle { // solo ColumnLayout { id: soloBox - anchors.margins: 40 anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top @@ -82,13 +83,9 @@ Rectangle { Text { id: soloMainLabel - text: qsTr("Mining helps the Monero network build resilience.<br>") - + qsTr("The more mining is done, the harder it is to attack the network.<br>") - + qsTr("Mining also gives you a small chance to earn some Monero.<br>") - + qsTr("Your computer will search for Monero block solutions.<br>") - + qsTr("If you find a block, you will get the associated reward.<br>") - + translationManager.emptyString + text: qsTr("Mining helps the Monero network build resilience. The more mining is done, the harder it is to attack the network. Mining also gives you a small chance to earn some Monero. Your computer will search for Monero block solutions. If you find a block, you will get the associated reward.") + translationManager.emptyString wrapMode: Text.Wrap + Layout.fillWidth: true } RowLayout { @@ -193,7 +190,6 @@ Rectangle { Text { id: statusText - anchors.leftMargin: 40 anchors.topMargin: 17 text: qsTr("Status: not mining") textFormat: Text.RichText |
