Skip to content

Commit b9035b8

Browse files
committed
Fix syntax in projection
1 parent e8ccca2 commit b9035b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/hist2d/TH2Painter.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2603,7 +2603,7 @@ class TH2Painter extends THistPainter {
26032603
if (i2+dd >= h.i2) { i2 = Math.min(Math.round(i2+dd), h.i2); i1 = Math.max(i2 - this.projection_width, h.i1); }
26042604
else { i1 = Math.max(Math.round(i1-dd), h.i1); i2 = Math.min(i1 + this.projection_width, h.i2); }
26052605
}
2606-
x1 = h.grx[i1], x2 = h.grx[i2],
2606+
x1 = h.grx[i1]; x2 = h.grx[i2];
26072607
binid = i1*777 + i2*333;
26082608
}
26092609

0 commit comments

Comments
 (0)