Skip to content
Advertisement

QGridlLayout with non-stretchable-height rows

I’m trying to build a QGridLayout with stretchable-width columns but non-stretchable-height rows. The grid in inside a QScrollArea, and with the exception of the height, it’s almost working. You can see it in the following images:

enter image description here

enter image description here

As you can see, the rows are being vertically stretched. I would like all the rows to be equal and to not fit all the parent’s height if there are too few rows (first image). Should I touch the grid or the actual widgets?

Edit: reproducible example

JavaScript

Advertisement

Answer

void QGridLayout::setRowStretch(int row, int stretch)

Sets the stretch factor of row row to stretch. The first row is number 0.

The stretch factor is relative to the other rows in this grid. Rows with a higher stretch factor take more of the available space.

Yes, is it because it must me called after all rows have been added.

JavaScript

enter image description here

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement