diff options
| author | mmbyday <mmbyday@protonmail.com> | 2018-12-13 19:53:50 -0800 |
|---|---|---|
| committer | mmbyday <mmbyday@protonmail.com> | 2018-12-13 19:53:50 -0800 |
| commit | fc26bd175e1c7eff9581626fa58dd253d4cb39d6 (patch) | |
| tree | d8458eb8d4040e4cc46ed66a828fc42c65ce670a | |
| parent | 59fc48bd8be5e7227ea3d7b571e9e04829e3636d (diff) | |
| download | monzero-gui-fc26bd175e1c7eff9581626fa58dd253d4cb39d6.tar.gz monzero-gui-fc26bd175e1c7eff9581626fa58dd253d4cb39d6.tar.xz monzero-gui-fc26bd175e1c7eff9581626fa58dd253d4cb39d6.zip | |
Transfer: transaction priority persists over page changes and reset to automatic after successful send
| -rw-r--r-- | pages/Transfer.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pages/Transfer.qml b/pages/Transfer.qml index f766bc72..589cdea2 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -82,6 +82,8 @@ Rectangle { paymentIdLine.text = "" amountLine.text = "" descriptionLine.text = "" + priorityDropdown.currentIndex = 0 + updatePriorityDropdown() } // Information dialog @@ -192,6 +194,7 @@ Rectangle { shadowPressedColor: "#B32D00" releasedColor: "#363636" pressedColor: "#202020" + currentIndex: 0 } } // Make sure dropdown is on top @@ -623,7 +626,6 @@ Rectangle { function updatePriorityDropdown() { priorityDropdown.dataModel = priorityModelV5; - priorityDropdown.currentIndex = 0 priorityDropdown.update() } |
