Domanda

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 ??

È stato utile?

Soluzione

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

border: 0px solid transparent; // Or any other border
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top