Skip to content

Commit

Permalink
Removed +1 from width, however it's introducing a gap
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasun committed May 31, 2024
1 parent 56d3c4b commit 3a64572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/tubemap.js
Original file line number Diff line number Diff line change
Expand Up @@ -3784,7 +3784,7 @@ function drawTrackRectangles(rectangles, type, groupTrack) {
.append("rect")
.attr("x", (d) => d.xStart)
.attr("y", (d) => d.yStart)
.attr("width", (d) => d.xEnd - d.xStart + 1)
.attr("width", (d) => d.xEnd - d.xStart)
.attr("height", (d) => d.yEnd - d.yStart + 1)
.style("fill", (d) => d.color)
.attr("trackID", (d) => d.id)
Expand Down

0 comments on commit 3a64572

Please sign in to comment.