QDialog not showing close button on Mac
Qt4.4.1
I am facing a problem of missing close button on QDialog on Mac. Buttons are visible and working on windows but not on Mac.
I am creating a QDialog as follows:
Code:
FormHtmlDisplay newFeatures(this);
newFeatures.setFixedSize(200,50);
newFeatures.exec();
Constructor for FormHtmlDisplay is as follows:
I have not changed any properties in designer for QDialog in designer for FormHtmlDisplay class. Can some body help me why it is not showing close button on top left on Mac?
Re: QDialog not showing close button on Mac
Hi,
Did you changed the WindowFlags?
Regards,
Santhosh
Re: QDialog not showing close button on Mac
No, I did not change any window flags!