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("
Type of graph: | ");
safef( option, sizeof(option), "%s.%s", name, LINEBAR );
wiggleGraphDropDown(option, lineBar);
if (boxed)
{
printf(" | ");
printf("Graph configuration help",WIGGLE_HELP_PAGE);
}
puts(" |
");
printf("Track height: | ");
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 (range: %d to %d)",
minHeightPixels, maxHeightPixels);
puts(" |
");
printf("Data view scaling: | ");
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: ");
wiggleAlwaysZeroDropDown(option, alwaysZero);
|
---|