aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-10-08 03:54:35 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-10-10 00:22:36 +0300
commit60b2d9003342528d6906ae5bf61e38439ce69d97 (patch)
tree5d1d9028566ebb26e6914b475ff2ed364d2018ac /components
parent0ac27e13a6cf10ba76fd1f50f8443ec0eccbc019 (diff)
downloadmonzero-gui-60b2d9003342528d6906ae5bf61e38439ce69d97.tar.gz
monzero-gui-60b2d9003342528d6906ae5bf61e38439ce69d97.tar.xz
monzero-gui-60b2d9003342528d6906ae5bf61e38439ce69d97.zip
History: display "fee" for sent transactions
Diffstat (limited to 'components')
-rw-r--r--components/HistoryTable.qml28
1 files changed, 27 insertions, 1 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml
index 0cca1148..f08ce8d2 100644
--- a/components/HistoryTable.qml
+++ b/components/HistoryTable.qml
@@ -252,7 +252,33 @@ ListView {
font.pixelSize: 18
font.letterSpacing: -1
color: isOut ? "#FF4F41" : "#36B05B"
- text: displayAmount
+ text: displayAmount
+ }
+ }
+ }
+
+ // -- "Fee column
+ Column {
+ anchors.top: parent.top
+ width: 148
+ visible: isOut
+ Text {
+ anchors.left: parent.left
+ font.family: "Arial"
+ font.pixelSize: 12
+ color: "#545454"
+ text: qsTr("Fee") + translationManager.emptyString
+ }
+
+ Row {
+ spacing: 2
+ Text {
+ anchors.bottom: parent.bottom
+ font.family: "Arial"
+ font.pixelSize: 18
+ font.letterSpacing: -1
+ color: isOut ? "#FF4F41" : "#36B05B"
+ text: fee
}
}
}