Qt: QListWidget separator line between items?

jbrennan picture jbrennan · Oct 15, 2011 · Viewed 10.3k times · Source

I can't find any way to put a line between items in my list. Am I missing something?

Answer

Chris picture Chris · Oct 16, 2011

A style sheet would be easiest, for example:

myListWidget->setStyleSheet( "QListWidget::item { border-bottom: 1px solid black; }" );

You'll want to look at some of the style sheet documentation