3e1c9e1a4f3d10821478ae0d99f82bc071f20117
tdreszer
  Thu Jan 26 13:27:05 2012 -0800
configurable off should be supported at composite/view and subtrack level.  Before this it was only at subtrack level.
diff --git src/hg/inc/trackDb.h src/hg/inc/trackDb.h
index 0eb0cdd..e3e10b3 100644
--- src/hg/inc/trackDb.h
+++ src/hg/inc/trackDb.h
@@ -603,18 +603,20 @@
 return startsWithWord("bigWig", tdb->type);
 }
 
 INLINE boolean tdbIsBam(struct trackDb *tdb)
 // Return TRUE if tdb corresponds to a BAM file.
 {
 return startsWithWord("bam", tdb->type);
 }
 
 INLINE boolean tdbIsVcf(struct trackDb *tdb)
 // Return TRUE if tdb corresponds to a VCF file.
 {
 return startsWithWord("vcfTabix", tdb->type);
 }
 
+boolean trackDbSettingBlocksConfiguration(struct trackDb *tdb);
+// Configuration dialogs amy be explicitly blocked in tracDb settings
 
 #endif /* TRACKDB_H */