Hi! How do I change the color of the selection of a QListWidget? I came up with this but it doesn't work:

Qt Code:
  1. QPalette p = QPalette(skinsListView->palette());
  2. p.setColor(QPalette::Highlight, QColor(22, 22, 123));
  3. skinsListView->setPalette(p);
To copy to clipboard, switch view to plain text mode