修复除F车机外的车机类型显示出来了小地图的bug

This commit is contained in:
董宏宇
2020-12-23 15:20:05 +08:00
parent 7ecaaeda3c
commit 9dff7a3a58

View File

@@ -116,10 +116,13 @@ public class SmallVisionProvider implements IMogoSmallMapProvider, IMogoStatusCh
}
}
if (descriptor == StatusDescriptor.MAIN_PAGE_RESUME) {
if (isTrue) {
showPanel();
} else {
hidePanel();
// 只有 VR 模式下才进行展示
if (MogoApisHandler.getInstance().getApis().getStatusManagerApi().isVrMode()) {
if (isTrue) {
showPanel();
} else {
hidePanel();
}
}
}
}