d191a06ac8b6ff4318ca67c8e3947a0e9694e81f
max
Fri Jun 21 05:07:05 2024 -0700
removing the dink left right buttons under image, but adding a configuration option to get them back, refs #26325
diff --git src/hg/hgTracks/config.c src/hg/hgTracks/config.c
index 5693264..4a28939 100644
--- src/hg/hgTracks/config.c
+++ src/hg/hgTracks/config.c
@@ -720,30 +720,36 @@
hPrintf("\n");
hPrintf("
");
hCheckBox("nextExonArrows", cartUsualBoolean(cart, "nextExonArrows", TRUE));
hPrintf(" | ");
hPrintf("Next/previous exon navigation");
hPrintf(" |
\n");
hPrintf("");
hCheckBox("exonNumbers", cartUsualBoolean(cart, "exonNumbers", TRUE));
hPrintf(" | ");
hPrintf("Show exon numbers");
hPrintf(" |
\n");
hPrintf("");
+hCheckBox("showDinkButtons", cartUsualBoolean(cart, "showDinkButtons", FALSE));
+hPrintf(" | ");
+hPrintf("Show move left/right limit buttons under image");
+hPrintf(" |
\n");
+
+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");
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));