Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Oct 30, 2024
1 parent f27fb36 commit b325acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/jsroot.js
Original file line number Diff line number Diff line change
Expand Up @@ -82873,7 +82873,7 @@ let TH1Painter$2 = class TH1Painter extends THistPainter {
findbin = null;
else if ((pnt_x < grx1 - gapx) || (pnt_x > grx2 + gapx))
findbin = null; // if bars option used check that bar is not match
else if (!this.options.Zero && (histo.getBinContent(findbin+1) === 0))
else if (!this.options.Zero && (histo.getBinContent(findbin+1) === 0) && (histo.getBinError(findbin+1) === 0))
findbin = null; // exclude empty bin if empty bins suppressed
}

Expand Down

0 comments on commit b325acc

Please sign in to comment.