diff --git a/src/util.cpp b/src/util.cpp index cdbcee448e..20523c1390 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -771,6 +771,12 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : CBaseDlg ( parent ) // set window title setWindowTitle ( tr ( "About %1" ).arg ( APP_NAME ) ); + +#if defined( Q_OS_IOS ) + // for iOS version maximize the window + setWindowState ( Qt::WindowMaximized ); +#endif + } // Licence dialog --------------------------------------------------------------