fc24be050fabfb742956996423a0d8d942055c87
gperez2
  Fri Dec 12 15:45:23 2025 -0800
Updating the text for the QuickLift info icon, refs #36662

diff --git src/hg/hgTracks/hgTracks.c src/hg/hgTracks/hgTracks.c
index ecad37ee2fb..942c1730fef 100644
--- src/hg/hgTracks/hgTracks.c
+++ src/hg/hgTracks/hgTracks.c
@@ -9687,31 +9687,35 @@
                         " type=\"button\" value=\"edit\">\n", idText);
                     jsOnEventByIdF("click", idText,
                         "document.editHubForm.submit();return true;");
                     }
                 }
 
             hPrintf("</td><td style='text-align:center; width:90%%;'>\n<B>%s</B>", group->label);
             
             char *hubName = hubNameFromGroupName(group->name);
             struct trackHub *hub = grabHashedHub(hubName);
             if (hub && hub->url)
                 {
                 puts("&nbsp;");
                 char infoText[10000];
                 if (startsWith("QuickLift", group->label))
-                    safef(infoText, sizeof infoText, "This is a quickLift track group. It contains tracks that are annotation on %s that have been lifted up to this assembly, as well as a track (Alignment Differences) showing mismatches and indels between %s and this assembly.", hub->defaultDb, hub->defaultDb);
+                    safef(infoText, sizeof infoText, "This is a QuickLift track group that contains \
+				    tracks that are annotations on %s that have been lifted to this \
+				    assembly, along with a track (Alignment Differences) that shows \
+				    mismatches and indels between %s and this assembly."\
+				    , hub->defaultDb, hub->defaultDb);
                 else
                     safef(infoText, sizeof infoText, "A track hub is a list of tracks produced and hosted by external data providers. The UCSC browser group is not responsible for them. This hub is loaded from %s", hub->url);
                 printInfoIconColor(infoText, "white");
                 }
 
             hPrintf("</td><td style='text-align:right;'>\n");
             
             if (hubName)
 		{
                 if (cfgOptionBooleanDefault("groupDropdown", FALSE) && hub && hub->genomeList && hub->genomeList->next)
                     {
                     puts("<span style='font-size:13px'>Genomes: </span><select style='width:7em' name='db'>");
                     for (struct trackHubGenome *thg = hub->genomeList; thg != NULL; thg = thg->next)
                         {
                         if (!sameWord(thg->name, database))