From 08d5730fbe9a7f2eafadf83d738b7d0230a074cd Mon Sep 17 00:00:00 2001 From: xmr-eric <eric@moneroeric.com> Date: Mon, 27 Feb 2017 17:08:07 -0500 Subject: [PATCH] History.qml: Keep text mixed case --- pages/History.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/History.qml b/pages/History.qml index b1c99076..601e8800 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -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 } }