Hi,

I have a small problem with the new Qt 4.70 RC on Linux, it works different as the previous final version. I have a QListWidget and fill it with items via addItem, then I set the colours with QPalette:
Qt Code:
  1. QListWidget *m_completionList;
  2. ...
  3. QPalette palette;
  4. palette.setBrush(QPalette::Active, QPalette::Base, QColor(255, 190, 190));
  5. Core::instance()->m_completionList->setPalette(palette);
To copy to clipboard, switch view to plain text mode 

With Qt 4.6 the QListWidget-Items appears in the selected colour but now only one small tin line at the button of the last item is coloured, here an example:


or bigger:



Has something changed in Qt 4.70 and I must change my code or is his a bug?