tags:

views:

170

answers:

2

I have the situation in the following image:

alt text

How would I go about resizing the widget when the retry child is hidden so that it looks as in the first image? The main layout is a QVBoxLayout, the retry child is a widget with a QVBoxLayout as well.

I've tried the following:

  • update()
  • updateGeometry()
  • setGeometry(childrenRect())
  • layout()->activate()

on the main widget as soon as I've set the retry widget to hidden. Do I need to intercept some event to do this?

+4  A: 

The adjustSize function may do what you want.

Patrice Bernassola
That was it! Thanks.
laura
You're welcome Laura
Patrice Bernassola
A: 

Hello!

Can you say how did you solve you problems ? I have the same, but cann't solve it.

Thanks!

nucleus
I disabled the buttons.
laura