Change the size of table widget header labels in qt
-
Hello
Is it possible to change the size of the HorizontalHeaderLabels in Qt ? -
resizeColumnsToContents();
-
"QHeaderView":http://qt-project.org/doc/qt-4.8/qheaderview.html#minimumSectionSize-prop has a method (setMinimumSectionSize(int)) which allows you to set a minimum size for all your sections. Along with setResizeMode this should be enough.