Commit c5828af2 authored by Alexander.Trofimov's avatar Alexander.Trofimov

delete check return value from _getVisibleCell function 💤

parent 86fa708a
...@@ -2527,11 +2527,7 @@ ...@@ -2527,11 +2527,7 @@
} }
// ToDo подумать, может стоит не брать ячейку из модели (а брать из кеш-а) // ToDo подумать, может стоит не брать ячейку из модели (а брать из кеш-а)
var c = this._getVisibleCell( col, row ); var c = this._getVisibleCell(col, row);
if ( !c ) {
continue;
}
var bg = c.getFill(); var bg = c.getFill();
var mc = null; var mc = null;
var mwidth = 0, mheight = 0; var mwidth = 0, mheight = 0;
...@@ -2563,22 +2559,18 @@ ...@@ -2563,22 +2559,18 @@
if ( bg === null ) { if ( bg === null ) {
if ( col === colEnd && col < this.cols.length - 1 && row < this.rows.length - 1 ) { if ( col === colEnd && col < this.cols.length - 1 && row < this.rows.length - 1 ) {
var c2 = this._getVisibleCell( col + 1, row ); var c2 = this._getVisibleCell( col + 1, row );
if ( c2 ) {
var bg2 = c2.getFill(); var bg2 = c2.getFill();
if ( bg2 !== null ) { if ( bg2 !== null ) {
ctx.setFillStyle( bg2 ) ctx.setFillStyle( bg2 )
.fillRect( this.cols[col + 1].left - offsetX - this.width_1px, this.rows[row].top - offsetY - this.height_1px, this.width_1px, this.rows[row].height + this.height_1px ); .fillRect( this.cols[col + 1].left - offsetX - this.width_1px, this.rows[row].top - offsetY - this.height_1px, this.width_1px, this.rows[row].height + this.height_1px );
} }
}
var c3 = this._getVisibleCell( col, row + 1 ); var c3 = this._getVisibleCell( col, row + 1 );
if ( c3 ) {
var bg3 = c3.getFill(); var bg3 = c3.getFill();
if ( bg3 !== null ) { if ( bg3 !== null ) {
ctx.setFillStyle( bg3 ) ctx.setFillStyle( bg3 )
.fillRect( this.cols[col].left - offsetX - this.width_1px, this.rows[row + 1].top - offsetY - this.height_1px, this.cols[col].width + this.width_1px, this.height_1px ); .fillRect( this.cols[col].left - offsetX - this.width_1px, this.rows[row + 1].top - offsetY - this.height_1px, this.cols[col].width + this.width_1px, this.height_1px );
} }
} }
}
continue; continue;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment