From 40e5af15ba2a80432b981ab9ec8331645fa0d8f5 Mon Sep 17 00:00:00 2001 From: ann0see <20726856+ann0see@users.noreply.github.com> Date: Wed, 7 Aug 2024 21:56:32 +0200 Subject: [PATCH] Make connect dialog show up as fullscreen on iOS Fixes GUI issue of connect dialog overflowing screen on iOS --- src/connectdlg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/connectdlg.cpp b/src/connectdlg.cpp index bc5190aa81..055dae6de1 100755 --- a/src/connectdlg.cpp +++ b/src/connectdlg.cpp @@ -157,8 +157,8 @@ CConnectDlg::CConnectDlg ( CClientSettings* pNSetP, const bool bNewShowCompleteR // setup timers TimerInitialSort.setSingleShot ( true ); // only once after list request -#ifdef ANDROID - // for the android version maximize the window +#if defined( ANDROID ) || defined( Q_OS_IOS ) + // for the Android and iOS version maximize the window setWindowState ( Qt::WindowMaximized ); #endif