Details
-
Bug
-
Resolution: Unresolved
-
P1: Critical
-
None
-
6.7.1, 6.8.1
Description
Following code does not shows warning icon in QMessageBox when Qt 6.7 and higher is used.
Same works with Qt6.6 and earlier.
QMainWindow window; QMessageBox::Icon icon = QMessageBox::Warning; QMessageBox msg(icon,"Title","Message"); msg.exec();