@ray-js/ipc-player-integration 0.0.32 → 0.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ui/ui.js +2 -0
- package/package.json +1 -1
package/lib/ui/ui.js
CHANGED
|
@@ -703,6 +703,8 @@ export const IPCPlayerIntegration = /*#__PURE__*/React.memo(props => {
|
|
|
703
703
|
// 重新开始计时
|
|
704
704
|
// @ts-ignore
|
|
705
705
|
timer.current = setTimeout(() => {
|
|
706
|
+
// 竖屏全屏模式下控件常驻,不触发隐藏
|
|
707
|
+
if (isVerticalFullLayout && screenType === 'vertical') return;
|
|
706
708
|
triggerEvent(hideAllComponent);
|
|
707
709
|
}, HIDE_COMPONENT_TIME);
|
|
708
710
|
});
|