mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
TickDelegate.qml: Keep text mixed case
This commit is contained in:
parent
0b017ff954
commit
9ac8e26a48
1 changed files with 3 additions and 3 deletions
|
@ -52,9 +52,9 @@ Item {
|
||||||
font.pixelSize: 12
|
font.pixelSize: 12
|
||||||
color: "#4A4949"
|
color: "#4A4949"
|
||||||
text: {
|
text: {
|
||||||
if(currentIndex === 0) return qsTr("NORMAL") + translationManager.emptyString
|
if(currentIndex === 0) return qsTr("Normal") + translationManager.emptyString
|
||||||
if(currentIndex === 3) return qsTr("MEDIUM") + translationManager.emptyString
|
if(currentIndex === 3) return qsTr("Medium") + translationManager.emptyString
|
||||||
if(currentIndex === 13) return qsTr("HIGH") + translationManager.emptyString
|
if(currentIndex === 13) return qsTr("High") + translationManager.emptyString
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue