From bf4e6fd23c43743ffe26df3b2c3117910e28c254 Mon Sep 17 00:00:00 2001 From: Benoit Martins Date: Thu, 24 Jul 2025 14:39:46 +0200 Subject: [PATCH] Disable picture-in-picture mode --- Linphone/UI/Call/CallView.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Linphone/UI/Call/CallView.swift b/Linphone/UI/Call/CallView.swift index 147a9e366..b5290eeee 100644 --- a/Linphone/UI/Call/CallView.swift +++ b/Linphone/UI/Call/CallView.swift @@ -562,7 +562,8 @@ struct CallView: View { if callViewModel.videoDisplayed { if !callViewModel.isPaused && TelecomManager.shared.callInProgress && !(coreContext.pipViewModel.pipController?.isPictureInPictureActive ?? false) { - coreContext.pipViewModel.pipController?.startPictureInPicture() + // TODO: Enable PIP in 6.1 + //coreContext.pipViewModel.pipController?.startPictureInPicture() } callViewModel.videoDisplayed = false DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) { @@ -879,7 +880,8 @@ struct CallView: View { .onDisappear { if !callViewModel.isPaused && TelecomManager.shared.callInProgress && !(coreContext.pipViewModel.pipController?.isPictureInPictureActive ?? false) { - coreContext.pipViewModel.pipController?.startPictureInPicture() + // TODO: Enable PIP in 6.1 + //coreContext.pipViewModel.pipController?.startPictureInPicture() } } }