minor enhancement to the BarcodeEncoder UI.

This commit is contained in:
favoritas37 2016-06-14 02:41:37 +03:00
parent aabc0e2fbb
commit b0e3661c44
1 changed files with 4 additions and 1 deletions

View File

@ -20,7 +20,10 @@ Rectangle {
anchors.top: parent.top
text: "decode"
anchors.margins: 10
onClicked: qzxing.encodeData(inputField.text)
onClicked: {
qzxing.encodeData(inputField.text)
inputField.text = '';
}
}
GroupBox {