Hello Friends.
How can I modify the size of my icon in my QListWidgetItem. I have an png with 128*128

Qt Code:
  1. QStringList myStringList2;
  2. myStringList2 <<"test";
  3. QIcon testItemIcon(":/images/undo.png");
  4. foreach(QString str2, myStringList2){
  5. QListWidgetItem *testItem = new QListWidgetItem(testItemIcon, str2, customerList);
  6. customerList->addItem(testItem);
  7. QRadialGradient gradient(100, 100, 100, 100, 100);
  8. gradient.setColorAt(0, QColor::fromRgbF(210, 239, 109,0));
  9. gradient.setColorAt(1, QColor::fromRgbF(0, 1, 0, 0));
  10. QBrush brush(gradient);
  11. testItem->setBackground(brush);
  12. }
To copy to clipboard, switch view to plain text mode 

but my icon is quit little and i don´t know why??

Have you some ideas