Frage

I currently have something like this in my QtableView stylesheet

QTableView::item 
{
     selection-background-color: rgb(85, 85, 127);
     border-bottom: 1px double #8f8f91;
 }

Now the problem is the selection-background-color: rgb(85, 85, 127); takes effct only if border-bottom: 1px double #8f8f91; is disabled. Any suggestions ??

War es hilfreich?

Lösung

You should specify any border attribute if you want suck customization. Is't specific of QSS:

border: 0px solid transparent; // Or any other border
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top