@ray-js/ipc-player-integration 0.0.33-beta.1 → 0.0.35-beta.1
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
|
@@ -704,6 +704,8 @@ export const IPCPlayerIntegration = /*#__PURE__*/React.memo(props => {
|
|
|
704
704
|
// 重新开始计时
|
|
705
705
|
// @ts-ignore
|
|
706
706
|
timer.current = setTimeout(() => {
|
|
707
|
+
// 竖屏全屏模式下控件常驻,不触发隐藏
|
|
708
|
+
if (isVerticalFullLayout && screenType === 'vertical') return;
|
|
707
709
|
triggerEvent(hideAllComponent);
|
|
708
710
|
}, HIDE_COMPONENT_TIME);
|
|
709
711
|
});
|