ce8ecbbd267e3cd3f1c9bb24ace346e61fbe9019
kate
  Thu Oct 18 11:27:36 2018 -0700
Fix some issues with linked features display (tall region). refs #21917

diff --git src/hg/hgTracks/hgTracks.h src/hg/hgTracks/hgTracks.h
index f406aee..c6694a3 100644
--- src/hg/hgTracks/hgTracks.h
+++ src/hg/hgTracks/hgTracks.h
@@ -876,33 +876,30 @@
 void loadBed9(struct track *tg);
 /* Convert bed 9 info in window to linked feature.  (to handle itemRgb)*/
 
 void loadGappedBed(struct track *tg);
 /* Convert bed info in window to linked feature. */
 
 void linkedFeaturesFreeList(struct linkedFeatures **pList);
 /* Free up a linked features list. */
 
 void freeLinkedFeaturesSeries(struct linkedFeaturesSeries **pList);
 /* Free up a linked features series list. */
 
 int simpleFeatureCmp(const void *va, const void *vb);
 /* Compare to sort based on start. */
 
-void linkedFeaturesSortAndBound(struct linkedFeatures *lf);
-/* Sort simpleFeatures in the linkedFeature and set start and end based on simpleFetaures */
-
 int linkedFeaturesCmp(const void *va, const void *vb);
 /* Compare to sort based on chrom,chromStart. */
 
 int linkedFeaturesCmpStart(const void *va, const void *vb);
 /* Help sort linkedFeatures by starting pos. */
 
 void linkedFeaturesBoundsAndGrays(struct linkedFeatures *lf);
 /* Calculate beginning and end of lf from components, etc. */
 
 int lfCalcGrayIx(struct linkedFeatures *lf);
 /* Calculate gray level from components. */
 
 void linkedFeaturesDraw(struct track *tg, int seqStart, int seqEnd,
         struct hvGfx *hvg, int xOff, int yOff, int width,
         MgFont *font, Color color, enum trackVisibility vis);