77227aac02f85bc432f11c1fc619556936db3a87 max Mon Oct 7 09:38:18 2024 -0700 adding (i) icons to table browser, refs #27619 diff --git src/hg/hgTables/mainPage.c src/hg/hgTables/mainPage.c index bb3085b..a0c678d 100644 --- src/hg/hgTables/mainPage.c +++ src/hg/hgTables/mainPage.c @@ -616,32 +616,39 @@ { "https://genome.ucsc.edu/goldenPath/help/hgTablesHelp.html#GettingStarted", "https://genome.ucsc.edu/goldenPath/help/hgTablesHelp.html#GettingStarted", "https://genome.ucsc.edu/goldenPath/help/hgTablesHelp.html#Filter", "https://genome.ucsc.edu/goldenPath/help/hgTablesHelp.html#OutputFormats" }; static void printStep(int num) /* Print user guidance via steps */ { if (num > STEP_MAX) errAbort("Internal error: table browser help problem"); hPrintf(""); hPrintf(""); hPrintf("
"); -hPrintf("%s", +hPrintf("%s", stepLabels[num-1]); + +hPrintf(" "); +hPrintf(""); +hPrintf(""); +hPrintf(""); +hPrintf(""); + hPrintf("%s %s\n", stepHelp[num-1], stepHelpLinks[num-1], HELP_LABEL); hPrintf("
"); hPrintf(""); hPrintf(""); } void showMainControlTable(struct sqlConnection *conn) /* Put up table with main controls for main page. */ { struct grp *selGroup; boolean isWig = FALSE, isPositional = FALSE, isMaf = FALSE, isBedGr = FALSE, isChromGraphCt = FALSE, isPal = FALSE, isArray = FALSE, isBam = FALSE, isVcf = FALSE, isHalSnake = FALSE, isLongTabix = FALSE, isHic = FALSE; boolean gotClade = hGotClade();