Get rid of Qt's dotted outline on QListView items
After some more testing, I found that the following stylesheet works:
QListView {
outline: 0;
}
Setting "outline: 0;" in the stylesheet doesn't work for me (anymore?). The only solution I could find was to set the ListView's FocusPolicy to "Qt::NoFocus", which comes with obvious drawbacks.