We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72c3a9b commit a5fd44eCopy full SHA for a5fd44e
src/qml/pages/wallet/Send.qml
@@ -194,6 +194,11 @@ PageStack {
194
selectByMouse: true
195
text: root.recipient.amount.display
196
onEditingFinished: root.recipient.amount.display = text
197
+ onActiveFocusChanged: {
198
+ if (!activeFocus) {
199
+ root.recipient.amount.display = text
200
+ }
201
202
}
203
Item {
204
width: unitLabel.width + flipIcon.width
@@ -202,10 +207,7 @@ PageStack {
207
anchors.verticalCenter: parent.verticalCenter
208
MouseArea {
209
anchors.fill: parent
205
- onClicked: {
206
- root.recipient.amount.display = amountInput.text
- root.recipient.amount.flipUnit()
- }
210
+ onClicked: root.recipient.amount.flipUnit()
211
212
CoreText {
213
id: unitLabel
0 commit comments