diff options
| author | xmr-eric <eric@moneroeric.com> | 2017-01-14 13:31:25 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-14 13:31:25 -0500 |
| commit | 4a2266b29561bfaab1cf3eb94a4a39ff37443f48 (patch) | |
| tree | 01a4ebef953fb5a3a071711801c65cebc37bf034 /components | |
| parent | 7cbd61dae21fdf8a27081d28ebb130195d77ed69 (diff) | |
| download | monzero-gui-4a2266b29561bfaab1cf3eb94a4a39ff37443f48.tar.gz monzero-gui-4a2266b29561bfaab1cf3eb94a4a39ff37443f48.tar.xz monzero-gui-4a2266b29561bfaab1cf3eb94a4a39ff37443f48.zip | |
TickDelegate.qml: Changed LOW to NORMAL
Diffstat (limited to 'components')
| -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 "" |
