Skip to content

Commit

Permalink
fixed all the errors
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekkumar08 committed Jan 28, 2021
1 parent ba8e70b commit 33aaa0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/widgets/pitchdrummatrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,8 @@ class PitchDrumMatrix {
labelCell.style.fontSize = this._cellScale * 100 + "%";
labelCell.style.height = Math.floor(MATRIXSOLFEHEIGHT * this._cellScale) + 1 + "px";
labelCell.style.width = Math.floor(MATRIXSOLFEWIDTH * this._cellScale) + "px";
labelCell.style.minWidth = labelCell.style.minWidth;
labelCell.style.maxWidth = labelCell.style.minWidth;
labelCell.style.minWidth = 0;
labelCell.style.maxWidth = 0;
labelCell.className = "headcol";
labelCell.innerHTML = this.rowLabels[j] + this.rowArgs[j].toString().sub();

Expand Down

0 comments on commit 33aaa0e

Please sign in to comment.