11736c96fdabcee94132ff44fa7b318b42cc372d
braney
  Thu Mar 1 10:44:33 2018 -0800
change maxHeightPixels for collections

diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index 8a12766..092ea3e 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -5159,32 +5159,30 @@
         }
     }
 
 printf("<TR valign=center><th align=right>Type of graph:</th><td align=left>");
 safef( option, sizeof(option), "%s.%s", name, LINEBAR );
 wiggleGraphDropDown(option, lineBar);
 if (boxed)
     {
     printf("</td><td align=right colspan=2>");
     printf("<A HREF=\"%s\" TARGET=_blank>Graph configuration help</A>",WIGGLE_HELP_PAGE);
     }
 puts("</td></TR>");
 
 printf("<TR valign=center><th align=right>Track height:</th><td align=left colspan=3>");
 safef(option, sizeof(option), "%s.%s", name, HEIGHTPER );
-if (isCustomComposite(tdb))
-    maxHeightPixels = 10000;
 cgiMakeIntVarWithLimits(option, defaultHeight, "Track height",0, minHeightPixels, maxHeightPixels);
 if (isCustomComposite(tdb))
     printf("pixels");
 else
     printf("pixels&nbsp;(range: %d to %d)",
            minHeightPixels, maxHeightPixels);
 puts("</TD></TR>");
 
 printf("<TR valign=center><th align=right>Data view scaling:</th><td align=left colspan=3>");
 safef(option, sizeof(option), "%s.%s", name, AUTOSCALE );
 wiggleScaleDropDown(option, autoScale);
 wiggleScaleDropDownJavascript(name);
 safef(option, sizeof(option), "%s.%s", name, ALWAYSZERO);
 printf("Always include zero:&nbsp");
 wiggleAlwaysZeroDropDown(option, alwaysZero);