Transfer page: priority dropdown hidded

pull/2/head
Ilya Kitaev 8 years ago
parent 8ac86a8042
commit e3985da4e1

@ -45,7 +45,7 @@ Rectangle {
text: qsTr("Amount") text: qsTr("Amount")
fontSize: 14 fontSize: 14
} }
/*
Label { Label {
id: transactionPriority id: transactionPriority
anchors.top: parent.top anchors.top: parent.top
@ -54,8 +54,11 @@ Rectangle {
x: (parent.width - 17) / 2 + 17 x: (parent.width - 17) / 2 + 17
text: qsTr("Transaction prority") text: qsTr("Transaction prority")
} }
*/
Row { Row {
id: amountRow
anchors.top: amountLabel.bottom anchors.top: amountLabel.bottom
anchors.topMargin: 5 anchors.topMargin: 5
anchors.left: parent.left anchors.left: parent.left
@ -84,7 +87,7 @@ Rectangle {
ListElement { column1: "MEDIUM"; column2: "( fee: 0.0004 )" } ListElement { column1: "MEDIUM"; column2: "( fee: 0.0004 )" }
ListElement { column1: "HIGH"; column2: "( fee: 0.0008 )" } ListElement { column1: "HIGH"; column2: "( fee: 0.0008 )" }
} }
/*
StandardDropdown { StandardDropdown {
id: priorityDropdown id: priorityDropdown
anchors.top: transactionPriority.bottom anchors.top: transactionPriority.bottom
@ -99,12 +102,14 @@ Rectangle {
dataModel: priorityModel dataModel: priorityModel
z: 1 z: 1
} }
*/
Label { Label {
id: privacyLabel id: privacyLabel
anchors.left: parent.left anchors.left: parent.left
anchors.right: parent.right anchors.right: parent.right
anchors.top: priorityDropdown.bottom anchors.top: amountRow.bottom
anchors.leftMargin: 17 anchors.leftMargin: 17
anchors.rightMargin: 17 anchors.rightMargin: 17
anchors.topMargin: 30 anchors.topMargin: 30
@ -122,6 +127,19 @@ Rectangle {
anchors.topMargin: 5 anchors.topMargin: 5
} }
Label {
id: costLabel
anchors.right: parent.right
anchors.top: amountRow.bottom
anchors.leftMargin: 17
anchors.rightMargin: 17
anchors.topMargin: 30
fontSize: 14
text: qsTr("Cost")
}
Label { Label {
id: addressLabel id: addressLabel
anchors.left: parent.left anchors.left: parent.left