Skip to content

Commit

Permalink
set font family -- requirement for SVG output
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Oct 20, 2021
1 parent c8fd9fc commit 4184abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/feature/interactionTrack.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ class InteractionTrack extends TrackBase {
pixelStart--;
}
const otherChr = feature.chr === feature.chr1 ? feature.chr2 : feature.chr1;
ctx.font = "8px";
ctx.font = "8px sans-serif";
ctx.textAlign = "center";
if (this.arcOrientation) {
// UP
Expand Down

0 comments on commit 4184abb

Please sign in to comment.