78659cb4c09310b5094ba7fa612c476201a26d2a
galt
  Wed Sep 12 14:16:03 2012 -0700
Revert "removing arbitrary limit on bigBed -- let users have more control"
This reverts commit e4aec0c172a44c018885a6b9f33b7d65a8b8047b.

I guess we are back to having a limit, but it will be increased from 500 to 3000

diff --git src/hg/hgTracks/hgTracks.h src/hg/hgTracks/hgTracks.h
index a60fddd..8301efc 100644
--- src/hg/hgTracks/hgTracks.h
+++ src/hg/hgTracks/hgTracks.h
@@ -42,30 +42,32 @@
 #endif /* GBROWSE */
 
 /* A few hgGenome cart constant defaults copied from */
 #define hggPrefix "hgGenome_"
 #define hggGraphPrefix hggPrefix "graph"
 
 /* trackDb setting for expRatio tracks */
 #define EXP_COLOR_DENSE "expColorDense"
 
 #ifdef LOWELAB
 #define MAXPIXELS 60000
 #else
 #define MAXPIXELS 14000
 #endif
 
+#define BIGBEDMAXIMUMITEMS 500
+
 struct track
 /* Structure that displays of tracks. The central data structure
  * of the graphical genome browser. */
     {
     struct track *next;   /* Next on list. */
     char *track;             /* Track symbolic name. Name on image map etc. Same as tdb->track. */
     char *table;             /* Table symbolic name. Name of database table. Same as tdb->table.*/
     enum trackVisibility visibility; /* How much of this want to see. */
     enum trackVisibility limitedVis; /* How much of this actually see. */
     boolean limitedVisSet;	     /* Is limited visibility set? */
 
     char *longLabel;           /* Long label to put in center. */
     char *shortLabel;          /* Short label to put on side. */
 
     bool mapsSelf;          /* True if system doesn't need to do map box. */