I have a QMessageBox that is too short.
I've tried various methods of increasing the height, such as resize, setMinimumHeight, setSizeIncrement + setSizeGripEnabled, but none of these attempts work. Setting SizeGrip doesn't allow me to resize the window at all.
dialog = QMessageBox(self)
dialog.setWindowTitle('About this programme')
dialog.setText('Introductory text')
dialog.setDetailedText('A bunch more text')
dialog.setMinimumHeight(500)
dialog.setSizeIncrement(1, 1)
dialog.setSizeGripEnabled(True)
dialog.show()
For reference in the picture, the window labelled Rotascript has size 360x, 370y.
What am I doing wrong, or is this some kind of bug?
Thanks in advance.