Skip to content

Commit

Permalink
Make about dialog show up as full screen on iOS
Browse files Browse the repository at this point in the history
Fixes an overflow bug for the about dialog on iOS.

Related to: jamulussoftware#3343
  • Loading branch information
ann0see authored Aug 7, 2024
1 parent cb44669 commit 62b64fa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 --------------------------------------------------------------
Expand Down

0 comments on commit 62b64fa

Please sign in to comment.