Details
-
Bug
-
Resolution: Out of scope
-
P2: Important
-
4.3.3
-
None
Description
When using style sheets on a QTableView in Windows Vista, headers are not painted right. When typing:
QTableView {
alternate-background-color: rgb(70, 70, 70);
background: rgb(39, 39, 39);
color: rgb(200, 200, 200);
selection-background-color: rgb(120, 120, 120);
selection-color: rgb(255, 255, 255);
}
QHeaderView::section {
alternate-background-color: rgb(70, 70, 70);
background: rgb(39, 39, 39);
color: rgb(200, 200, 200);
selection-background-color: red;
selection-color: red;
}
QHeaderView {
alternate-background-color: rgb(70, 70, 70);
background: rgb(39, 39, 39);
color: rgb(200, 200, 200);
selection-background-color: rgb(120, 120, 120);
selection-color: rgb(255, 255, 255);
}
..and selecting a line the headers break the color. The should turn red.