bf391f48053823623796ee5531d3e2b97a57c20e braney Mon Jan 13 13:49:12 2025 -0800 promote "show" visibility to full status as a visbility instead of aliasing it to "full" refs #35036 diff --git src/hg/inc/hui.h src/hg/inc/hui.h index 43cb47a..38bc99d 100644 --- src/hg/inc/hui.h +++ src/hg/inc/hui.h @@ -188,32 +188,32 @@ void endControlGrid(struct controlGrid **pCg); /* Finish up a control grid. */ void controlGridEndRow(struct controlGrid *cg); /* Force end of row. */ /****** Some stuff for hide/dense/full controls ******/ enum trackVisibility /* How to look at a track. */ { tvHide=0, /* Hide it. */ tvDense=1, /* Squish it together. */ tvFull=2, /* Expand it out. */ tvPack=3, /* Zig zag it up and down. */ tvSquish=4, /* Pack with thin boxes and no labels. */ + tvShow=5, /* show supertrack */ }; -#define tvShow tvFull enum trackVisibility hTvFromString(char *s); /* Given a string representation of track visibility, return as * equivalent enum. */ enum trackVisibility hTvFromStringNoAbort(char *s); /* Given a string representation of track visibility, return as * equivalent enum. */ char *hStringFromTv(enum trackVisibility vis); /* Given enum representation convert to string. */ /* Standard width for visibility dropdowns */ #define TV_DROPDOWN_STYLE "width: 70px"