Change the horizontal header height of QTableView
Solved
General and Desktop
-
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 :)