Skip to content

Commit

Permalink
Don't clearRect when doing readCloud
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Oct 31, 2018
1 parent dc12714 commit 64e0ef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JBrowse/View/FeatureGlyph/PairedAlignment.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function(
return declare(Alignment, {

renderFeature( context, fRect ) {
if( this.track.displayMode != 'collapsed' )
if( this.track.displayMode != 'collapsed' && !this.config.readCloud )
context.clearRect( Math.floor(fRect.l), fRect.t, Math.ceil(fRect.w), fRect.h );


Expand Down

0 comments on commit 64e0ef8

Please sign in to comment.