blessed-contrib icon indicating copy to clipboard operation
blessed-contrib copied to clipboard

Canvas calcSize question

Open wiseman opened this issue 4 years ago • 1 comments

Why does canvas compute its size in this way, quadrupling height and doubling width and subtracting... 12?

Canvas.prototype.calcSize = function() {
  this.canvasSize = {width: this.width*2-12, height: this.height*4};
};

wiseman avatar Oct 30 '19 04:10 wiseman

Looks like @mvaladas subtracted 12 in commit cc4f59762fd04d7c48dd5a96dbfff17ea3010b1c

wiseman avatar Oct 30 '19 04:10 wiseman