94cb3a8fc27c6d25c975aaaba7d49ce4ca129270 braney Thu Sep 28 11:32:34 2023 -0700 Revert "increase maxItemsInFullTrack to 10,000 from 1,000" This reverts commit 003ab3805f814b34afad5ef601beb2caa984d0ca. diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c index baa6a87..0c9a6b5 100644 --- src/hg/hgTracks/simpleTracks.c +++ src/hg/hgTracks/simpleTracks.c @@ -170,31 +170,31 @@ boolean exprBedColorsMade = FALSE; /* Have the shades of Green, Red, and Blue been allocated? */ int maxRGBShade = EXPR_DATA_SHADES - 1; Color scafColor[SCAF_COLORS+1]; /* declare colors for scaffold coloring, +1 for unused scaffold 0 color */ Color chromColor[CHROM_COLORS+1]; /* Declare colors for chromosome coloring, +1 for unused chrom 0 color */ /* Have the 3 shades of 8 chromosome colors been allocated? */ boolean chromosomeColorsMade = FALSE; boolean doPliColors = FALSE; /* have the 10 scaffold colors been allocated */ static boolean scafColorsMade = FALSE; -int maxItemsInFullTrack = 10000; /* Maximum number of items displayed in full */ +int maxItemsInFullTrack = 1000; /* Maximum number of items displayed in full */ int maxItemsToUseOverflowDefault = 10000; /* # of items to allow overflow mode*/ /* These variables persist from one incarnation of this program to the * next - living mostly in the cart. */ // multi-window variables global to hgTracks struct window *windows = NULL; // list of windows in image struct window *currentWindow = NULL; bool trackLoadingInProgress; // flag to delay ss layout until all windows are ready. int fullInsideX; // full-image insideX int fullInsideWidth; // full-image insideWidth struct virtRegion *virtRegionList = NULL; // list of regions in virtual chrom struct virtChromRegionPos *virtChrom = NULL; // virtual chrom array of positions and regions int virtRegionCount = 0; // number of regions in virtual chromosome