소스 검색

Move popout menu over if it is too wide

master
Fen Dweller 3 년 전
부모
커밋
54a57b6239
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      macrovision.js

+ 2
- 2
macrovision.js 파일 보기

@@ -4150,8 +4150,8 @@ function showPopoutMenu(id, event) {
let menuWidth = popoutMenu.getBoundingClientRect().width;
let screenWidth = window.innerWidth;

if (menuWidth * 1.5 > screenWidth) {
popoutMenu.style.left = 25 + "px";
if (rect.x + menuWidth > screenWidth) {
popoutMenu.style.left = Math.max(0, screenWidth - menuWidth) + "px";
}
}



불러오는 중...
취소
저장