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

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -