소스 검색

Fixed issue with bank item list canvas not displaying.

dev
Bryan Miller 5 년 전
부모
커밋
9c6c78941e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      app/js/ctrls/CTRLBanksStore.js

+ 2
- 2
app/js/ctrls/CTRLBanksStore.js 파일 보기

@@ -38,8 +38,8 @@ function SetElBankName(el, name){
var RenderBankToEl = Utils.throttle(function(el, bank){
var cnv = el.querySelector("." + BLI_CANVAS);
var ctx = cnv.getContext("2d");
var cw = Math.floor(cnv.clientWidth);
var ch = Math.floor(cnv.clientHeight);
var cw = (cnv.clientWidth > 0) ? Math.floor(cnv.clientWidth) : Math.floor(cnv.width);
var ch = (cnv.clientHeight > 0) ? Math.floor(cnv.clientHeight) : Math.floor(cnv.height);
if (cw <= 0 || ch <= 0){return;}
var ctximg = ctx.getImageData(0,0,cw,ch);


Loading…
취소
저장