e7e155e57c9f0f1b456f614e254fe5e19d448d2b max Tue Jan 20 01:43:10 2026 -0800 changes after code review, refs #36932 diff --git src/hg/hgTracks/hgTracks.c src/hg/hgTracks/hgTracks.c index e7b04148d0d..2c4f19ac1a9 100644 --- src/hg/hgTracks/hgTracks.c +++ src/hg/hgTracks/hgTracks.c @@ -9893,35 +9893,35 @@ /* Add supertracks to track list, sort by priority and * determine if they have visible member tracks */ if (sameString(group->name, "visible")) { // we want tracks in the visible list to also be visible // in the normal group list, so use a separate hash for the // visible tracks grouping groupTrackListAddSuper(cart, group, hashNew(8), hashNew(8)); } else groupTrackListAddSuper(cart, group, superHash, trackHash); /* Display track controls */ if (group->errMessage) { - hPrintf("Track hub error "); + hPrintf("Track hub error "); printInfoIcon("Use our track hub debugging help under My Data > Track Hubs > Hub Development. Note that you need to switch off caching there to see changes that you made to the track hub files without delay. Or click the disconnect button above to improve performance now temporarily. Contact us if you cannot resolve the issue."); hPrintf(": "); hPrintf("%s", group->errMessage); - hPrintf("\n"); + hPrintf("\n"); } for (tr = group->trackList; tr != NULL; tr = tr->next) { struct track *track = tr->track; if (tdbIsSuperTrackChild(track->tdb)) /* don't display supertrack members */ continue; // only top level tracks contribute to the total count trackCount++; myControlGridStartCell(cg, isOpen, group->name, shouldBreakAll(track->shortLabel)); printTrackLink(track);