mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
Transfer: automatically use low priority if no backlog is present (requires #3123)
This commit is contained in:
parent
bed05a484c
commit
b9757fe837
1 changed files with 3 additions and 2 deletions
|
@ -191,8 +191,9 @@ Rectangle {
|
|||
ListModel {
|
||||
id: priorityModelV5
|
||||
|
||||
ListElement { column1: qsTr("Default") ; column2: ""; priority: 0}
|
||||
ListElement { column1: qsTr("Slow (x0.25 fee)") ; column2: ""; priority: 1}
|
||||
ListElement { column1: qsTr("Default (x1 fee)") ; column2: ""; priority: 2 }
|
||||
ListElement { column1: qsTr("Normal (x1 fee)") ; column2: ""; priority: 2 }
|
||||
ListElement { column1: qsTr("Fast (x5 fee)") ; column2: ""; priority: 3 }
|
||||
ListElement { column1: qsTr("Fastest (x41.5 fee)") ; column2: ""; priority: 4 }
|
||||
|
||||
|
@ -642,7 +643,7 @@ Rectangle {
|
|||
|
||||
function updatePriorityDropdown() {
|
||||
priorityDropdown.dataModel = priorityModelV5;
|
||||
priorityDropdown.currentIndex = 1
|
||||
priorityDropdown.currentIndex = 0
|
||||
priorityDropdown.update()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue