Layout of fixed size objects and one object that changes size
-
I have a QFrame that contains a QListWidget, multiple QLineEdits and a couple of QPushButtons. One of the QLineEdits has to change size depending on what text is input. I can get the object to change size automatically, but if enough text is entered it will try to past the edge of the QFrame. Is there a way to expand past the QFrame and show all the text being input? Possibly a QHBoxLayout?
-
Hi,
AFAIK, the only way to do that would be to remove the widget from the layout it's in and you manage yourself its new independent life (e.g. resizing and moving).