diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-12-18 09:36:30 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-12-18 09:36:30 -0600 |
| commit | b8f531382d0149f6f1133fd1fb1d9549cf6b6ea4 (patch) | |
| tree | d06ccd8e3ef209691c7064d482e354a0249831d2 | |
| parent | f463d2c511fbce6e8daedf5ef0c9dd3e7c630461 (diff) | |
| parent | fc26bd175e1c7eff9581626fa58dd253d4cb39d6 (diff) | |
| download | monzero-gui-b8f531382d0149f6f1133fd1fb1d9549cf6b6ea4.tar.gz monzero-gui-b8f531382d0149f6f1133fd1fb1d9549cf6b6ea4.tar.xz monzero-gui-b8f531382d0149f6f1133fd1fb1d9549cf6b6ea4.zip | |
Merge pull request #1823
fc26bd1 Transfer: transaction priority persists over page changes and reset to automatic after successful send (mmbyday)
| -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() } |
