I may be mistaken, but I think the qt install added the library directories to the win path.
It took me a good bit of work to upgrade to using 5.15.0. I have 2 programs I wrote that both make use of QTableWidget and 5.15.0 broke them both by making the row height much larger than before (basically where I could fit 8 rows I could only fit 7). It took quit a bit of trial and error to figure out how to adjust the row height. I messed with sizeHints, style sheets, set height calls for QTableView, QTableWidget, QTableWidgetItem, until I found it was the vertical header, which was not shown, causing the problem.
FYI I had to add the following 2 changes:
verticalHeader()->setMinimumSectionSize(24);
verticalHeader()->resizeSection(row,38);
verticalHeader()->setMinimumSectionSize(24);
verticalHeader()->resizeSection(row,38);
To copy to clipboard, switch view to plain text mode
I really don't like hard coding the pixel height, but since they are programs for my own use it doesn't really matter.
Thanks again for your prompt replies, you have saved me much time.
Bookmarks