Kaynağa Gözat

Always center the image

master
Fen Dweller 5 yıl önce
ebeveyn
işleme
b9d99d2cbe
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      xray.js

+ 1
- 1
xray.js Dosyayı Görüntüle

@@ -526,7 +526,7 @@ function setup() {
[baseCtx, baseCtxResized, overlayCtx, overlayCtxResized, shadowCtx].forEach(ctx => { [baseCtx, baseCtxResized, overlayCtx, overlayCtxResized, shadowCtx].forEach(ctx => {
ctx.canvas.width = width; ctx.canvas.width = width;
ctx.canvas.height = height; ctx.canvas.height = height;
ctx.canvas.style.left = fitScreen ? (availableWidth - width) / 2 + "px" : 0;
ctx.canvas.style.left = (availableWidth - width) / 2 + "px";
ctx.canvas.style.top = fitScreen ? (availableHeight - height) / 2 + "px" : 0; ctx.canvas.style.top = fitScreen ? (availableHeight - height) / 2 + "px" : 0;
}); });


Yükleniyor…
İptal
Kaydet