mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
Transfer page: priority dropdown hidded
This commit is contained in:
parent
8ac86a8042
commit
e3985da4e1
1 changed files with 21 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue