af8d21ecd875295fe5c1c75f786a60896042c8ac dschmelt Tue Dec 14 14:33:25 2021 -0800 Slight wording change to container mouseover refs #28558 diff --git src/hg/lib/hui.c src/hg/lib/hui.c index 32b55c8..d8e2a0f 100644 --- src/hg/lib/hui.c +++ src/hg/lib/hui.c @@ -9454,31 +9454,31 @@ return list; } void hPrintIcons(struct trackDb *tdb) /* prints optional folder and pennants icons and a space, if any icons were printed */ { bool hasIcon = hPrintPennantIcon(tdb); if (tdbIsSuper(tdb) || tdbIsComposite(tdb)) { // this is the folder.svg icon from the font-awesome collection. // the icon collection also contains a "fa fa-folder-o" icon, which is the outlined version // It was decided to use only the filled out icon for now and use the same icon for super // and composite tracks. Adding the SVG removes a dependency and makes the icons show up instantly, // instead of the short delay when using fonts. Github uses icons like this. hPrintf("" + "Click the track name to see all subtracks.'>" ""); hasIcon = TRUE; } if (hasIcon) hPrintf(" "); } boolean hPrintPennantIcon(struct trackDb *tdb) // Returns TRUE and prints out the "pennantIcon" when found. // Example: ENCODE tracks in hgTracks config list. { if (trackDbSetting(tdb, "wgEncode") != NULL) {