Is it possible to define the padding of QTableView cells? I would expect this to be possible using CSS stylesheets, but the documentation does not describe a method to do this.
The following stylesheet does not have the desired effect:
QTableView {
padding: 5px;
}
as it influences the padding property of the widget as a whole, not of the individual cells.