cb746da657a6e54cf46c1e8793b2d6ced2afdd5e kent Sat Jun 26 00:17:47 2010 -0700 Making it so that subtracks of composites without priorities are sorted by a case-insensitive comparision rather than a case sensitive comparison of label, which is consistent to how tracks are sorted elsewhere. diff --git src/hg/lib/hui.c src/hg/lib/hui.c index c5ffe70..dfafacf 100644 --- src/hg/lib/hui.c +++ src/hg/lib/hui.c @@ -2951,7 +2951,7 @@ if(compared != 0) return compared; -return strcmp(a->tdb->shortLabel, b->tdb->shortLabel); // Last chance +return strcasecmp(a->tdb->shortLabel, b->tdb->shortLabel); // Last chance } void sortTdbItemsAndUpdatePriorities(sortableTdbItem **items)