7110f5219b9ea255b4c8c4d2ef2be4b3bed4195a kuhn Tue Aug 24 12:32:39 2021 -0700 added a word to filter statement on hgTracks, items filtered out diff --git src/hg/lib/trackDbCustom.c src/hg/lib/trackDbCustom.c index 04336a4..39d4e2e 100644 --- src/hg/lib/trackDbCustom.c +++ src/hg/lib/trackDbCustom.c @@ -1581,29 +1581,29 @@ /* Returns TRUE if setting found in trackDb stanza is a file setting that * would benefit from directory $D substitution among other things - looks for * settings that ends in "Url" and a few others. */ { return endsWith(setting, "Url") || sameString(setting, "bigDataIndex") || sameString(setting, "frames") || sameString(setting, "summary") || sameString(setting, "searchTrix"); } char *labelAsFilteredNumber(char *label, unsigned numOut) /* add text to label to indicate filter is active */ { char buffer[2048]; -safef(buffer, sizeof buffer, " (%d items filtered)", numOut); +safef(buffer, sizeof buffer, " (%d items filtered out)", numOut); return catTwoStrings(label, buffer); } char *labelAsFiltered(char *label) /* add text to label to indicate filter is active */ { #define FILTER_ACTIVATED " (filter activated)" if (stringIn(FILTER_ACTIVATED, label)) return label; return (catTwoStrings(label, FILTER_ACTIVATED)); }