I have following style segment applied to QHeaderView
QHeaderView::section:selected
{
padding-left: 16px;
background-color: #1c1c1c;
}
for some reason "selected" Pseudo-State for QHeaderView is not working but in the documentation it says it should work. I have tried following and it works:
QHeaderView::section:first
{
padding-left: 16px;
background-color: #1c1c1c;
}
My question is, how can apply a different style for the selected Header TIA