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.
1 parent 4652c90 commit d8912aaCopy full SHA for d8912aa
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