37fc4512f3ceca8e617a9081c7612dbf27ecb092 gperez2 Tue Nov 19 23:30:12 2024 -0800 Adding 'd then v' and 'e then v' keyboard shortcuts to the Multi-Region pop-up menu. Removing 'e then v' keyboard shortcut under the 'View' menu, refs #18752 diff --git src/hg/hgTracks/config.c src/hg/hgTracks/config.c index e401b93..c214368 100644 --- src/hg/hgTracks/config.c +++ src/hg/hgTracks/config.c @@ -839,45 +839,45 @@ "<b>Multi-region display</b></a>" " 'slices' the genome to allow viewing discontinuous regions" " together in the browser window. "); // mode-specific message filled in by JS when dialog opened hPrintf("<span id='multiRegionConfigStatusMsg'></span>"); hPrintf("<p></p>"); hTableStart(); virtModeType = cartUsualString(cart, "virtModeType", virtModeType); hPrintf("<TR><TD>"); cgiMakeRadioButton("virtModeType", "default", sameWord("default", virtModeType)); hPrintf("</TD>"); hPrintf("<TD id='virtModeTypeDefaultLabel'>"); -hPrintf("Exit multi-region mode"); +hPrintf("Exit multi-region mode (d then v)"); hPrintf("</TD></TR>\n"); struct sqlConnection *conn = NULL; if (!trackHubDatabase(database)) // no db conn for assembly hubs conn = hAllocConn(database); // Do we have a gene table for exonMostly? findBestEMGeneTable(trackList); if (emGeneTable) { hPrintf("<TR><TD>"); cgiMakeRadioButton("virtModeType", "exonMostly", sameWord("exonMostly", virtModeType)); hPrintf("</TD><TD>"); - hPrintf("Show exons using %s. Use padding of: ", emGeneTrack->shortLabel); + hPrintf("Show exons using %s (e then v). Use padding of: ", emGeneTrack->shortLabel); hIntVar("emPadding", cartUsualInt(cart, "emPadding", emPadding), 3); hPrintf(" bases."); hPrintf("</TD></TR>\n"); } if (emGeneTable) { hPrintf("<TR><TD>"); cgiMakeRadioButton("virtModeType", "geneMostly", sameWord("geneMostly", virtModeType)); hPrintf("</TD><TD>"); hPrintf("Show genes using %s. Use padding of: ", emGeneTrack->shortLabel); hIntVar("gmPadding", cartUsualInt(cart, "gmPadding", gmPadding), 3); hPrintf(" bases."); hPrintf("</TD></TR>\n"); }