[2.13.0] add toggle btn to control fusion color reset

This commit is contained in:
zhongchao
2022-11-28 19:32:54 +08:00
parent 1a973e1b63
commit 1d29f097ee
4 changed files with 28 additions and 5 deletions

View File

@@ -96,7 +96,7 @@ object TrackerSourceColorHelper {
* 是否为融合数据,融合数据来源size >=2
*/
fun isFusion(data: TrackedObject): Boolean {
return data.trackedSourceList.size > 1
return FunctionBuildConfig.isFusionColor && data.trackedSourceList.size > 1
}
/**