From b3eda4106db64d7a384ca35888ddb00dbeef0e7c Mon Sep 17 00:00:00 2001 From: Igor Sorokin Date: Tue, 23 Jan 2024 23:41:08 +0300 Subject: [PATCH] Fix: Share view is not showing on iPadOS --- client/platforms/ios/MobileUtils.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/client/platforms/ios/MobileUtils.mm b/client/platforms/ios/MobileUtils.mm index fbf26ffd..58faad88 100644 --- a/client/platforms/ios/MobileUtils.mm +++ b/client/platforms/ios/MobileUtils.mm @@ -43,6 +43,7 @@ bool MobileUtils::shareText(const QStringList& filesToSend) { UIPopoverPresentationController *popController = activityController.popoverPresentationController; if (popController) { popController.sourceView = qtController.view; + popController.sourceRect = CGRectMake(100, 100, 100, 100); } QEventLoop wait;