We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6b340f5 + d8912aa commit 7258a55Copy full SHA for 7258a55
src/util.cpp
@@ -771,6 +771,15 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : CBaseDlg ( parent )
771
772
// set window title
773
setWindowTitle ( tr ( "About %1" ).arg ( APP_NAME ) );
774
+
775
+ //### TODO: BEGIN ###//
776
+ // Test if the window also needs to be maximized on Android.
777
+ // Android has not been tested
778
+# if defined( ANDROID ) || defined( Q_OS_IOS )
779
+ // for mobile version maximize the window
780
+ setWindowState ( Qt::WindowMaximized );
781
+# endif
782
+ //### TODO: END ###//
783
}
784
785
// Licence dialog --------------------------------------------------------------
0 commit comments