[6.1.0]修复自车光圈默认显示状态问题

This commit is contained in:
xuxinchao
2023-09-21 18:59:57 +08:00
parent b04631f915
commit 1b721ce9c0

View File

@@ -382,7 +382,12 @@ internal class SOPSettingView @JvmOverloads constructor(
}
//自车光圈
scCarAperture.isChecked = FunctionBuildConfig.isDisplayAnimEnable
if(FunctionBuildConfig.isDrawPointCloudData){
//如果点云效果是打开的,则自车光圈也跟随打开
scCarAperture.isChecked = true
}else{
scCarAperture.isChecked = FunctionBuildConfig.isDisplayAnimEnable
}
scCarAperture.setOnCheckedChangeListener { compoundButton, isChecked ->
CallerMapUIServiceManager.getMapUIController()?.setDisplayAnimEnable(isChecked)
hmiAction("SOP 是否展示自车光圈,",isChecked)