Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.9.0
Description
The text in the message box is only partially visible, the button is also very small and the minimize button is partially outside of the window.
#include <QMessageBox> #include <QApplication> int main(int argc, char *argv[]) { QApplication app(argc, argv); QMessageBox::about(nullptr, "Test", "Hello World"); }