ed64f2117c237ec58194baea7438d500052cef36 gperez2 Thu Aug 1 17:49:24 2024 -0700 Updating the configure page option text for the item details pop-up feature, refs #33216 diff --git src/hg/hgTracks/config.c src/hg/hgTracks/config.c index 535e0f6..d56f2ef 100644 --- src/hg/hgTracks/config.c +++ src/hg/hgTracks/config.c @@ -739,31 +739,31 @@ hPrintf(""); hCheckBox("enableHighlightingDialog", cartUsualBoolean(cart, "enableHighlightingDialog", TRUE)); hPrintf(""); hPrintf("Enable highlight with drag-and-select " "(if unchecked, drag-and-select always zooms to selection)"); hPrintf("\n"); // check if we can do hgc pages in a pop up before putting up the user control if (cfgOptionBooleanDefault("canDoHgcInPopUp", FALSE)) { // put a checkbox, on by default, to control whether item clicks stay on hgTracks or // go to hgTracks hPrintf(""); hCheckBox("doHgcInPopUp", cartUsualBoolean(cart, "doHgcInPopUp", TRUE)); - hPrintf("Item clicks open in pop-up\n"); + hPrintf("Enable pop-up when clicking items\n"); } hTableEnd(); cgiDown(0.9); char buf[256]; char *freeze = hFreezeFromDb(database); if (freeze == NULL) safef(buf, sizeof buf, "Configure Tracks on %s %s: %s", organization, browserName, trackHubSkipHubName(organism)); else if (stringIn(database, freeze)) safef(buf, sizeof buf, "Configure Tracks on %s %s: %s %s", organization, browserName, trackHubSkipHubName(organism), freeze);