Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Qt stylesheets: QHeaderView draws header text in bold when view data is selected

Tags:

c++

stylesheet

qt

I'm trying to style a QTableView with Qt Stylesheets. Everything works OK, except that all the table header texts (column headers) are drawn as bold text whenever data in the table view is selected.

I've tried things like this:

QTableView::section {
    font-weight: 400;
}
QTableView::section:selected {
    font-weight: 400;
}

QHeaderView {
    font-weight: 400;
}

QHeaderView::section {
    font-weight: 400;
}

to no avail.

Can anyone point me in the right direction, ideally using stylesheets?

like image 884
Thomi Avatar asked Sep 28 '09 14:09

Thomi


1 Answers

I haven't tested it, but setting the QHeaderView::highlightSections property to false should do the trick.

You can get a pointer to a QHeaderView object using QTableView's verticalHeader() and horizontalHeader() methods.

like image 152
IgKh Avatar answered Sep 19 '22 16:09

IgKh