fix(core): disable snap splitting

Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>
This commit is contained in:
rhunk
2025-08-22 11:05:05 +02:00
parent 2f808685e8
commit 7880b024ea
2 changed files with 5 additions and 3 deletions

View File

@@ -54,8 +54,10 @@ class ConfigurationOverride : Feature("Configuration Override") {
{ true })
overrideProperty("REDUCE_MY_PROFILE_UI_COMPLEXITY", { context.config.userInterface.mapFriendNameTags.get() },
{ true })
overrideProperty("ENABLE_LONG_SNAP_SENDING", { context.config.global.disableSnapSplitting.get() },
{ true })
arrayOf("DISABLE_SPLIT_RENDER_PASS_CONTROLLER", "ENABLE_LONG_SNAP_SENDING").forEach {
overrideProperty(it, { context.config.global.disableSnapSplitting.get() }, { true })
}
overrideProperty("DF_VOPERA_FOR_STORIES", { context.config.userInterface.verticalStoryViewer.get() },
{ true }, isAppExperiment = true)