mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
bugfix: empty transfer page
This commit is contained in:
parent
a3fc55e0ac
commit
b199c5fe0a
1 changed files with 7 additions and 3 deletions
|
@ -93,9 +93,13 @@ Rectangle {
|
||||||
|
|
||||||
ListModel {
|
ListModel {
|
||||||
id: priorityModel
|
id: priorityModel
|
||||||
ListElement { column1: qsTr("LOW") + translationManager.emptyString; column2: ""; priority: PendingTransaction.Priority_Low }
|
// ListElement: cannot use script for property value, so
|
||||||
ListElement { column1: qsTr("MEDIUM") + translationManager.emptyString; column2: ""; priority: PendingTransaction.Priority_Medium }
|
// code like this wont work:
|
||||||
ListElement { column1: qsTr("HIGH") + translationManager.emptyString; column2: ""; priority: PendingTransaction.Priority_High }
|
// ListElement { column1: qsTr("LOW") + translationManager.emptyString ; column2: ""; priority: PendingTransaction.Priority_Low }
|
||||||
|
|
||||||
|
ListElement { column1: qsTr("LOW") ; column2: ""; priority: PendingTransaction.Priority_Low }
|
||||||
|
ListElement { column1: qsTr("MEDIUM") ; column2: ""; priority: PendingTransaction.Priority_Medium }
|
||||||
|
ListElement { column1: qsTr("HIGH") ; column2: ""; priority: PendingTransaction.Priority_High }
|
||||||
}
|
}
|
||||||
|
|
||||||
StandardDropdown {
|
StandardDropdown {
|
||||||
|
|
Loading…
Reference in a new issue