I have the following class:
class SelectDateDialog(QDialog):
startDate = date.today()
endDate = date.today()
def __init__(self, text, isInterval = False):
QDialog.__init__(self)
uic.loadUi("resources/SelectDate.ui", self)
Now the dialog box can be changed in Mac OS X 10.5, but this should not be. It has a resizing knob in the lower right.
I already tried the function setSizeGripEnabled, it did not change anything.
How can I make it immutable?
source
share