QListView {
background: red;
}
does the trick, but in very global level. I want to stylize only the list view of the QComboBox completion list. Something like:
QComboBox QListView,
QComboBox > QListView,
QComboBox QLineEdit QListView, /* the combo box's editor */
QComboBox > QLineEdit > QListView,
{
...
}
All of these don’t work. Any suggestions how to stylize the QComboBox’s completion list view only?
↧