Commit a84cb8e2 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(ui/modules/Common/Form/Fields/HexField): handle correctly edition terminated

parent 36368c82
......@@ -41,10 +41,11 @@ Item {
}
onEditingFinished: {
text = text.length
? parseInt(textField.text, 16)
: 0
wrapper.editingFinished(text)
if (!text.length) {
text = '0'
}
wrapper.editingFinished(parseInt(textField.text, 16))
}
}
}
belle-sip @ d95f3f9f
Subproject commit 7c5bb0a415950fe38f0857ed02c66b65b976be28
Subproject commit d95f3f9fc6e1a9bacd50c6b5c5e80e24a44796f6
cmake-builder @ 147c2540
Subproject commit 326a0976c0b42927056d39d99a396a2d0a8fc3da
Subproject commit 147c2540ef8399dad97b05350c17501f4f437de6
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment