Commit b19b0156 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(ui/modules/Common/Form/TransparentTextInput): do not emit...

fix(ui/modules/Common/Form/TransparentTextInput): do not emit `editingFinished` if `readOnly` attribute is used
parent d09f5c3e
......@@ -101,7 +101,10 @@ Item {
onEditingFinished: {
cursorPosition = 0
parent.editingFinished()
if (!parent.readOnly) {
parent.editingFinished()
}
}
}
}
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