mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
History.qml: Keep text mixed case
This commit is contained in:
parent
92a5781b6a
commit
08d5730fbe
1 changed files with 4 additions and 4 deletions
|
@ -270,7 +270,7 @@ Rectangle {
|
|||
anchors.left: toDatePicker.right
|
||||
anchors.leftMargin: 17
|
||||
width: 60
|
||||
text: qsTr("FILTER")
|
||||
text: qsTr("Filter")
|
||||
shadowReleasedColor: "#4D0051"
|
||||
shadowPressedColor: "#2D002F"
|
||||
releasedColor: "#6B0072"
|
||||
|
@ -333,9 +333,9 @@ Rectangle {
|
|||
|
||||
ListModel {
|
||||
id: transactionsModel
|
||||
ListElement { column1: "ALL"; column2: ""; value: TransactionInfo.Direction_Both }
|
||||
ListElement { column1: "SENT"; column2: ""; value: TransactionInfo.Direction_Out }
|
||||
ListElement { column1: "RECEIVED"; column2: ""; value: TransactionInfo.Direction_In }
|
||||
ListElement { column1: "All"; column2: ""; value: TransactionInfo.Direction_Both }
|
||||
ListElement { column1: "Sent"; column2: ""; value: TransactionInfo.Direction_Out }
|
||||
ListElement { column1: "Received"; column2: ""; value: TransactionInfo.Direction_In }
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue