- 
    Bug 
- 
    Resolution: Done
- 
    P4: Low 
- 
    5.1.0
- 
    None
- 
    Windows 7 Based on Qt 5.1.0 (32 bit)
 Linux
- 
        4ef8144dd6a7a4e493c901c3d1d4bbb7735c161c
I made simple Application:
-Added in designer simple pushbutton
-after click i create Qdialog
-I setWindowOpacity in Main window and in QDialog
-MainWindow works, QDialog does not
on pushbutton click slot:
QDialog *qd = new QDialog();
qd->setFixedSize(this->width(),this->height());
this->setWindowOpacity(0.5); //this work
qd->setWindowOpacity(0.5); // this is not
qd->show();