Skip to content

Commit

Permalink
Merge pull request #3344 from ann0see/iOS/fixAboutDlgOverflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ann0see authored Oct 4, 2024
2 parents 6b340f5 + d8912aa commit 7258a55
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,15 @@ CAboutDlg::CAboutDlg ( QWidget* parent ) : CBaseDlg ( parent )

// set window title
setWindowTitle ( tr ( "About %1" ).arg ( APP_NAME ) );

//### TODO: BEGIN ###//
// Test if the window also needs to be maximized on Android.
// Android has not been tested
# if defined( ANDROID ) || defined( Q_OS_IOS )
// for mobile version maximize the window
setWindowState ( Qt::WindowMaximized );
# endif
//### TODO: END ###//
}

// Licence dialog --------------------------------------------------------------
Expand Down

0 comments on commit 7258a55

Please sign in to comment.