Re: [Interest] SOLVED: QStyledItemDelegate's sizeHint() height being ignored by QTableWidget?

2016-01-04 Thread Elvis Stansvik
2016-01-04 16:19 GMT+01:00 Bob Hood : > On 1/3/2016 7:30 PM, Bob Hood wrote: > > Am I going to have to use a QTableView with a model in order to get the > height I need in each cell, or might this be a bug? > > > Since all my images are the same height, I solved this by

Re: [Interest] SOLVED: QStyledItemDelegate's sizeHint() height being ignored by QTableWidget?

2016-01-04 Thread Bob Hood
On 1/4/2016 8:38 AM, Elvis Stansvik wrote: 2016-01-04 16:19 GMT+01:00 Bob Hood : On 1/3/2016 7:30 PM, Bob Hood wrote: Am I going to have to use a QTableView with a model in order to get the height I need in each cell, or might this be a bug? Since all my images are the

Re: [Interest] SOLVED: QStyledItemDelegate's sizeHint() height being ignored by QTableWidget?

2016-01-04 Thread Bob Hood
On 1/3/2016 7:30 PM, Bob Hood wrote: Am I going to have to use a QTableView with a model in order to get the height I need in each cell, or might this be a bug? Since all my images are the same height, I solved this by directly calling QTableWidget's inherited method setRowHeight(). This has