c++ - Qt : Setting a border bottom on QtableView disables selection-background-color -
i have in qtableview stylesheet
qtableview::item  {      selection-background-color: rgb(85, 85, 127);      border-bottom: 1px double #8f8f91;  }   now problem selection-background-color: rgb(85, 85, 127); takes effct if border-bottom: 1px double #8f8f91; disabled. suggestions ??
you should specify border attribute if want suck customization. is't specific of qss:
border: 0px solid transparent; // or other border      
Comments
Post a Comment