aboutsummaryrefslogtreecommitdiff
path: root/components/PrivacyLevelSmall.qml
diff options
context:
space:
mode:
authormoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-26 13:59:00 +0000
committermoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-26 13:59:00 +0000
commitd982c3da84f9844912123287595522fc64a1f67e (patch)
treeb546db5b885ee3b92b841af18e10fd7a096b9bfe /components/PrivacyLevelSmall.qml
parent26abdee5c47017a80117b1bed5ee36586a240c62 (diff)
downloadmonzero-gui-d982c3da84f9844912123287595522fc64a1f67e.tar.gz
monzero-gui-d982c3da84f9844912123287595522fc64a1f67e.tar.xz
monzero-gui-d982c3da84f9844912123287595522fc64a1f67e.zip
Add fee multiplier info to priority levels
Users are unlikely to know the link
Diffstat (limited to 'components/PrivacyLevelSmall.qml')
-rw-r--r--components/PrivacyLevelSmall.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/PrivacyLevelSmall.qml b/components/PrivacyLevelSmall.qml
index cb1cd36e..8c7f7e60 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") + translationManager.emptyString
+ text: qsTr("LOW (x1 fee)") + 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") + translationManager.emptyString
+ text: qsTr("MEDIUM (x20 fee)") + 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") + translationManager.emptyString
+ text: qsTr("HIGH (x166 fee)") + translationManager.emptyString
}
MouseArea {