1ba22c3fff694d48c7a81e28030820694ec05a25 braney Tue Jan 31 15:20:35 2017 -0800 fix a bug with bigGenePred's not paying attention to itemRgb diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c index 44d9085..3c07357 100644 --- src/hg/hgTracks/simpleTracks.c +++ src/hg/hgTracks/simpleTracks.c @@ -13828,30 +13828,32 @@ { tdb->canPack = TRUE; wordCount++; words[1] = "11"; track->isBigBed = TRUE; chainMethods(track, tdb, wordCount, words); if (trackShouldUseAjaxRetrieval(track)) track->loadItems = dontLoadItems; } else if (sameWord(type, "bigGenePred")) { tdb->canPack = TRUE; wordCount++; words[1] = "12"; bigBedMethods(track, tdb, wordCount, words); + track->itemColor = bigGenePredColor; + track->itemNameColor = bigGenePredColor; if (trackShouldUseAjaxRetrieval(track)) track->loadItems = dontLoadItems; } else if (sameWord(type, "bedGraph")) { bedGraphMethods(track, tdb, wordCount, words); } else if (sameWord(type, "bigWig")) { bigWigMethods(track, tdb, wordCount, words); if (trackShouldUseAjaxRetrieval(track)) track->loadItems = dontLoadItems; // TODO: Dummy drawItems as well? } else #endif /* GBROWSE */