Merge pull request #3199 from element-hq/feature/bma/improvePip

Improve pip and add feature flag.
This commit is contained in:
Benoit Marty 2024-07-16 10:18:13 +02:00 committed by GitHub
commit 544b4a1057
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 66 additions and 3 deletions

View file

@ -113,4 +113,11 @@ enum class FeatureFlags(
defaultValue = { true },
isFinished = false,
),
PictureInPicture(
key = "feature.pictureInPicture",
title = "Picture in Picture for Calls",
description = "Allow the Call to be rendered in PiP mode",
defaultValue = { it.buildType != BuildType.RELEASE },
isFinished = false,
),
}