소스 검색

Fix the overlay not getting cleared properly when zoomed out

master
Fen Dweller 5 년 전
부모
커밋
5ca5257cc5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      xray.js

+ 1
- 1
xray.js 파일 보기

@@ -588,7 +588,7 @@ function updateOverlay(points, clicked) {
overlayCtx.globalCompositeOperation = "source-over";

if (!paintMode)
overlayCtx.clearRect(0, 0, w, h);
overlayCtx.clearRect(0, 0, w / window.devicePixelRatio, h / window.devicePixelRatio);

if (!paintMode || clicked) {
points.forEach(point => {


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