문제

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

도움이 되었습니까?

해결책

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

border: 0px solid transparent; // Or any other border
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top