Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
4.6.2
-
None
-
Windows 7 Ultimate (x64)
-
ee379340fcc5ebf8625906f42540c0fb3577f9ac
Description
The button text for the detail section get cut of in Windows 7. Seems as the button does not get resized to the containing text. See screenshot.
Example code for screenshot
QMessageBox m; m.setWindowTitle( QObject::tr( "Error Reading Configuration" ) ); m.setText( QObject::tr( "<b>Error while reading configuration.</b>" ) ); m.setIcon( QMessageBox::Critical ); m.setInformativeText( QObject::tr( "Please contract your system administrator and show this message. " "The application can not get started without a correct configuration." ) ); m.setDetailedText( QObject::tr( "Error message from configuration system was: %1" ).arg( gCfgManager().error() ) ); m.exec();