hello!
i have the following structure:
QWidget->QWidget->QBoxLayout->[QWidget1...QWidgetN]
where QWidget1 to QWidgetN are inserted one after another while the top-widgets are visible.
the problem is that while the widgets are added, the layout doesn't resize correctly, such that the widgets are way too small and their content is not visible.
the best way to see what i mean is by compiling the following (short) example:
http://homepages.physik.uni-muenchen...zeTestNew2.zip
the problem doesn't occur for widgets that are added before the main widget is visible... also, in the example QWidget1...QWidgetN are QWidgets containing a QHBoxLayout with a QLayout and a QDoubleSpinBox. When using JUST a QLabel, the problem doesn't occur...
how can i make the layout resize correctly to its contents? calling resize(sizeHint()) doesn't help, neither does calling updateGeometry and adjustSizes...

thanks,

thomas