File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const version_id = '7.9.x',
1212
1313/** @summary version date
1414 * @desc Release date in format day/month/year like '14/04/2022' */
15- version_date = '26/06 /2025',
15+ version_date = '30/07 /2025',
1616
1717/** @summary version id and date
1818 * @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -114210,7 +114210,7 @@ class TDrawSelector extends TSelector {
114210114210 res.k = res.nbins / (res.max - res.min);
114211114211
114212114212 res.GetBin = function(value) {
114213- const bin = this.lbls?.indexOf(value) ?? Number.isFinite(value) ? Math.floor((value - this.min) * this.k) : this.nbins + 1;
114213+ const bin = this.lbls?.indexOf(value) ?? ( Number.isFinite(value) ? Math.floor((value - this.min) * this.k) : this.nbins + 1) ;
114214114214 return bin < 0 ? 0 : ((bin > this.nbins) ? this.nbins + 1 : bin + 1);
114215114215 };
114216114216
Original file line number Diff line number Diff line change 441 . Fix - reading TLeafC leafs
552 . Fix - support BigInt in object inspector
663 . Fix - svg2pdf.js URL bounding box
7+ 4 . Fix - TTree::Draw with strings
78
89
910## Changes in 7.9.1
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const version_id = '7.9.x',
44
55/** @summary version date
66 * @desc Release date in format day/month/year like '14/04/2022' */
7- version_date = '26/06 /2025' ,
7+ version_date = '30/07 /2025' ,
88
99/** @summary version id and date
1010 * @desc Produced by concatenation of {@link version_id} and {@link version_date}
You can’t perform that action at this time.
0 commit comments