1a780d1afe8917fe305f89a178e97fa94e9c222a
jcasper
  Tue Mar 25 12:38:13 2025 -0700
Forgot to remove commented out code, refs #30380

diff --git src/hg/hgTracks/interactTrack.c src/hg/hgTracks/interactTrack.c
index 2581271410e..142a9e74614 100644
--- src/hg/hgTracks/interactTrack.c
+++ src/hg/hgTracks/interactTrack.c
@@ -537,36 +537,30 @@
 hvGfxBox(hvg, x, y, 1, 1, highlightColor);
 mapBoxHgcOrHgGene(hvg, start, end, x - width, y, width * 2, 4,
                    tg->track, item, itemBuf, NULL, TRUE, clickArg);
 }
 
 void drawPeakMapbox(struct track *tg, struct hvGfx *hvg, int seqStart, int seqEnd, 
                         char *item, char *status, int x, int y, 
                         Color peakColor, Color highlightColor, boolean drawUp)
 /* Draw grab box and add map box */
 {
 if (trackDbSettingClosestToHomeOn(tg->tdb, INTERACT_NO_HGC))
     return;
 
 if (drawUp)
     y = flipY(tg, y);
-/*
-hvGfxBox(hvg, x-1, y-1, 3, 3, peakColor);
-hvGfxBox(hvg, x, y, 1, 1, highlightColor);
-mapBoxHgcOrHgGene(hvg, seqStart, seqEnd, x-1, y-1, 3, 3,
-                   tg->track, item, status, NULL, TRUE, NULL);
-*/
 hvGfxBox(hvg, x-3, y-3, 7, 7, peakColor);
 hvGfxBox(hvg, x-2, y-2, 5, 5, highlightColor);
 mapBoxHgcOrHgGene(hvg, seqStart, seqEnd, x-3, y-3, 7, 7,
                    tg->track, item, status, NULL, TRUE, NULL);
 }
 
 static void drawOtherChromItem(struct track *tg, int seqStart, int seqEnd,
         struct hvGfx *hvg, int xOff, int yOff, int width,
         MgFont *font, Color color, enum trackVisibility vis,
         int draw, struct interact *inter, struct interactTrackInfo *tInfo,
         char *statusBuf, int peakColor, int highlightColor, boolean drawUp,
         boolean doDashes, char *itemBuf, struct hash *footHashOther)
 /* Breaking out the draw code for interactions between chromosomes into its
  * own function to give things a bit more compartmentalization.  This is
  * called by drawInteractItems */