Hi,
You should be able to set the width of a TextInput back to its "implicit width" (the width of the text it contains), by assigning undefined to its width property, either in script:
@textInput.width = undefined@
or in a PropertyChanges
@ PropertyChanges {
target: textInput
width: undefined
}@
Regards,
Michael