I'm new to pyQt and couldn't find an answer online. I have created a form, and in one edit line I want the input box to be bigger and allow longer text. the only option that worked for me was the following:
window.line.setFixedHeight(200)
But I'm dealing with 2 issues:
- the cursor starts from the middle of the box, how can I align it to the upper left side?
- there no option to get line down using enter.
I appreciate your help. Thanks.