Qt 6.11 is out! See what's new in the release
blog
Change the horizontal header height of QTableView
-
The easiest would be to set a fixed height:
tableView->horizontalHeader()->setFixedHeight(100); -
@Ratzz Have you tried
setMinimumHeight()andsetMaximumHeight()? -
The easiest would be to set a fixed height:
tableView->horizontalHeader()->setFixedHeight(100);@Chris-Kawa @Wieland
Both Solution worked :)