diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-12-10 15:07:09 +0000 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-12-10 15:07:09 +0000 |
| commit | a0fb4ccc951c38716b79b600ac8d43db896747a5 (patch) | |
| tree | 86bd68b760215631b9b1629240c97d872b889086 /components/PrivacyLevelSmall.qml | |
| parent | ff998ba17b21e7484048d59bf22271b4415a4f21 (diff) | |
| download | monzero-gui-a0fb4ccc951c38716b79b600ac8d43db896747a5.tar.gz monzero-gui-a0fb4ccc951c38716b79b600ac8d43db896747a5.tar.xz monzero-gui-a0fb4ccc951c38716b79b600ac8d43db896747a5.zip | |
Remove fee multiplier info from low/high slider
This was a braino on my part, this is only applicable for the
list based low/high selector.
Diffstat (limited to 'components/PrivacyLevelSmall.qml')
| -rw-r--r-- | components/PrivacyLevelSmall.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/PrivacyLevelSmall.qml b/components/PrivacyLevelSmall.qml index 8c7f7e60..cb1cd36e 100644 --- a/components/PrivacyLevelSmall.qml +++ b/components/PrivacyLevelSmall.qml @@ -99,7 +99,7 @@ Item { font.bold: true color: "#000000" x: row.x + (row.positions[0] !== undefined ? row.positions[0].currentX - 3 : 0) - width - text: qsTr("LOW (x1 fee)") + translationManager.emptyString + text: qsTr("LOW") + translationManager.emptyString } Text { @@ -110,7 +110,7 @@ Item { font.bold: true color: "#000000" x: row.x + (row.positions[4] !== undefined ? row.positions[4].currentX - 3 : 0) - width - text: qsTr("MEDIUM (x20 fee)") + translationManager.emptyString + text: qsTr("MEDIUM") + translationManager.emptyString } Text { @@ -121,7 +121,7 @@ Item { font.bold: true color: "#000000" x: row.x + (row.positions[13] !== undefined ? row.positions[13].currentX - 3 : 0) - width - text: qsTr("HIGH (x166 fee)") + translationManager.emptyString + text: qsTr("HIGH") + translationManager.emptyString } MouseArea { |
