Hi guy! I'm here again with a new problem!

I search, and search, and search... So let me explain. I've a QListWidget, but when a resize items, they are the one on the other. They adjust only when I'm move by a drag&drop.

I've try to use update and repaint, but without any success! Someone could help me?

Qt Code:
  1. for (int i = 0; i < widgetList->count(); i++) {
  2. if (groupeListWidget.at(i)->count() != 0
  3. && groupeListWidget.at(i)->count() != 1) {
  4. widgetList->item(i)->setSizeHint(QSize(
  5. widgetList->sizeHintForColumn(0), (26*
  6. groupeListWidget .at(i)->count()) + 54));
  7. widgetList->itemWidget(widgetList->item(i))->adjustSize();
  8. }
  9. widgetList->update(); //or repaint()
  10. }
To copy to clipboard, switch view to plain text mode 

The items are those of the widgetList

PS: My QListWidget contains another QListWidget, but it doesn't matter, I think.