Skip to content

Commit

Permalink
Disable all SampleInfo rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
turner committed Jun 17, 2024
1 parent f4e506e commit 250e126
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions js/trackView.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,18 +377,18 @@ class TrackView {

repaintSampleInfo() {

this.sampleInfoViewport.repaint()
// this.sampleInfoViewport.repaint()
}

repaintSamples() {

if (typeof this.track.getSamples === 'function') {
const samples = this.track.getSamples()
if (samples.names && samples.names.length > 0) {
this.sampleNameViewport.repaint(samples)
}

}
// if (typeof this.track.getSamples === 'function') {
// const samples = this.track.getSamples()
// if (samples.names && samples.names.length > 0) {
// this.sampleNameViewport.repaint(samples)
// }
//
// }
}

// track labels
Expand Down

0 comments on commit 250e126

Please sign in to comment.