4027e2682cacd0e0e034267b43c002421cb42314 max Tue Sep 4 03:57:34 2018 -0700 adding a small downward rectangle after the name of the view, to give an indication to the user that this is not a link but something that opens a menu below it. This is such a small change that I do not want to open a ticket for it and bother QA, so no redmine yet diff --git src/hg/lib/hui.c src/hg/lib/hui.c index 8f6d815..82c280a 100644 --- src/hg/lib/hui.c +++ src/hg/lib/hui.c @@ -7191,31 +7191,31 @@ compositeViewCfgExpandedByDefault(parentTdb,view,&visibility); enum trackVisibility vis = hTvFromString(visibility); freeMem(visibility); return vis; } static boolean hCompositeDisplayViewDropDowns(char *db, struct cart *cart, struct trackDb *parentTdb) // UI for composite view drop down selections. { int ix; char varName[SMALLBUF]; char classes[SMALLBUF]; char javascript[JBUFSIZE]; char id[256]; #define CFG_LINK "%s%s ▾" #define CFG_LINK_JS "return (showConfigControls('%s') == false);" #define MAKE_CFG_LINK(name,title,viewTrack,open) \ safef(id, sizeof id, "%s_link", (name)); \ printf(CFG_LINK, (name),id,(title),(title),(viewTrack),((open)?"on":"off")); \ safef(javascript, sizeof javascript, CFG_LINK_JS, (name)); \ jsOnEventById("click", id, javascript); // membersForAll is generated once per track, then cached membersForAll_t *membersForAll = membersForAllSubGroupsGet(parentTdb, cart); members_t *membersOfView = membersForAll->members[dimV]; if (membersOfView == NULL) return FALSE;