1e748ea1d6d755df39df0dee2b3298a170b61081
kate
  Wed Apr 6 16:09:12 2016 -0700
Temp fix for build error.

diff --git src/hg/hgTracks/gtexTracks.c src/hg/hgTracks/gtexTracks.c
index fedd694..13c5e66 100644
--- src/hg/hgTracks/gtexTracks.c
+++ src/hg/hgTracks/gtexTracks.c
@@ -1045,32 +1045,32 @@
 int height = 0;
 
 if (vis == tvDense)
     { 
     height = tgFixedTotalHeightOptionalOverflow(tg, vis, tl.fontHeight+1, tl.fontHeight, FALSE);
     }
 else if (vis == tvSquish)
     {
     // for visibility, set larger than the usual squish, which is half font height
     height = gtexSquishItemHeight() * 2;  // the squish packer halves this
     height = tgFixedTotalHeightOptionalOverflow(tg, vis, height+1, height, FALSE);
     }
 else if ((vis == tvPack) || (vis == tvFull))
     {
     // layout -- initially as fixed height
-    //int height = gtexGeneMaxHeight(tg);  // TODO KATE
-    int height = tl.fontHeight;
+    int height = gtexGeneMaxHeight(tg);  // TODO KATE
+    height = tl.fontHeight;
     tgFixedTotalHeightOptionalOverflow(tg, vis, height, height, FALSE);
 
     // set variable height rows
     if (tg->ss->rowCount != 0)
         {
         if (!tg->ss->rowSizes)
 	    {
 	    // collect the rowSizes data across all windows
 	    assert(currentWindow==windows); // first window
 	    assert(tg->ss->vis == vis); // viz matches, we have the right one
 	    struct spaceSaver *ssHold; 
 	    AllocVar(ssHold);
 	    struct track *tgSave = tg;
 	    for(tg=tgSave; tg; tg=tg->nextWindow)
 		{