leixingyu/unrealStylesheet

disabled dropdown visually looks the same as a normal dropdown

Closed this issue · 2 comments

disabled dropdown visually looks the same as a normal dropdown

unreal stylesheet expected something like this
image image

adding this to the stylesheet fixes that

QComboBox:disabled {
    color: #8f8f8f;
    background-color: #353535;
    border-style: transparent; }

agreed