diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-01-22 11:54:15 -0500 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-01-22 11:54:15 -0500 |
| commit | 2c69d3b72659be3f2c9efda987e5759a2ef2a7a4 (patch) | |
| tree | ec7aa8426826bb263b61000515a33ee9d1ecb4d0 | |
| parent | de63e930245b5f36bd378f5ca5c0ce19aa1cd515 (diff) | |
| parent | 4a2266b29561bfaab1cf3eb94a4a39ff37443f48 (diff) | |
| download | monzero-gui-2c69d3b72659be3f2c9efda987e5759a2ef2a7a4.tar.gz monzero-gui-2c69d3b72659be3f2c9efda987e5759a2ef2a7a4.tar.xz monzero-gui-2c69d3b72659be3f2c9efda987e5759a2ef2a7a4.zip | |
Merge pull request #403
4a2266b TickDelegate.qml: Changed LOW to NORMAL (xmr-eric)
| -rw-r--r-- | components/TickDelegate.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/TickDelegate.qml b/components/TickDelegate.qml index 2163d3e7..01c51e19 100644 --- a/components/TickDelegate.qml +++ b/components/TickDelegate.qml @@ -52,7 +52,7 @@ Item { font.pixelSize: 12 color: "#4A4949" text: { - if(currentIndex === 0) return qsTr("LOW") + translationManager.emptyString + if(currentIndex === 0) return qsTr("NORMAL") + translationManager.emptyString if(currentIndex === 3) return qsTr("MEDIUM") + translationManager.emptyString if(currentIndex === 13) return qsTr("HIGH") + translationManager.emptyString return "" |
