Skip to content

Commit

Permalink
Fix - polybin fill attr
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Jul 17, 2024
1 parent 006d209 commit 860f71a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/hist2d/TH2Painter.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1610,7 +1610,7 @@ class TH2Painter extends THistPainter {
if (draw_colors && (colindx !== null))
item.style('fill', this._color_palette.getColor(colindx));
else if (draw_fill)
item.call('fill', this.createAttFill(gr).func);
item.call(this.createAttFill(gr).func);
else
item.style('fill', 'none');
if (draw_lines)
Expand Down

0 comments on commit 860f71a

Please sign in to comment.