0dc3dba8c97201b69523bbcf01b4c19b17fce05a
braney
  Fri Oct 10 13:09:38 2025 -0700
ongoing work on quickLift

diff --git src/hg/hgTracks/imageV2.c src/hg/hgTracks/imageV2.c
index eb51c3cc768..c9812db4c5f 100644
--- src/hg/hgTracks/imageV2.c
+++ src/hg/hgTracks/imageV2.c
@@ -1905,31 +1905,31 @@
             struct trackDb * tdb = imgTrack->tdb;
             if (tdbIsCompositeChild(tdb))
                 tdb = tdbGetComposite(tdb);
             trackName = tdb->track;
             }
 
         // make quickLifted tracks have a green left button
         struct trackDb *tdb = imgTrack->tdb;
         struct trackHub *tHub = NULL;
         char *grpName = NULL;
         if (tdb != NULL)
             grpName = tdb->grp;
         if (grpName != NULL)
             tHub = grabHashedHub(grpName);
         char *btnType = "btn";
-        if ((tHub != NULL) && startsWith("Quicklift", tHub->longLabel))
+        if ((tHub != NULL) && startsWith("QuickLift", tHub->longLabel))
             btnType = "btnGreen";
         hPrintf(" width:9px; display:none;' class='%s %sbtn btnN %s'></p>",
                 trackName,(slice->link == NULL ? "inset " : ""), btnType);
         }
     else
         hPrintf("width:%dpx;'></p>",slice->width);
     }
 }
 
 // FF does not support newline code and '...' looks bad without newlines
 #define NEWLINE_ENCODED " &#x0A;"
 #define NEWLINE_NOT_SUPPORTED " - "
 #define NEWLINE_TO_USE(browser) ((browser) == btFF ? NEWLINE_NOT_SUPPORTED : NEWLINE_ENCODED)
 #define ELLIPSIS_TO_USE(browser) ((browser) == btFF ? "" : "...")