src/hg/lib/hui.c 1.227
1.227 2009/07/27 06:51:56 sugnet
Removing the unused combination logic from bedUi
Index: src/hg/lib/hui.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/hui.c,v
retrieving revision 1.226
retrieving revision 1.227
diff -b -B -U 4 -r1.226 -r1.227
--- src/hg/lib/hui.c 20 Jul 2009 20:57:18 -0000 1.226
+++ src/hg/lib/hui.c 27 Jul 2009 06:51:56 -0000 1.227
@@ -3435,19 +3435,13 @@
struct mrnaFilter *fil;
struct controlGrid *cg = NULL;
char *filterTypeVar = mud->filterTypeVar;
char *filterTypeVal = cartUsualString(cart, filterTypeVar, "red");
-char *logicTypeVar = mud->logicTypeVar;
-char *logicTypeVal = cartUsualString(cart, logicTypeVar, "and");
boxed = cfgBeginBoxAndTitle(tdb, boxed, title);
/* Define type of filter. */
printf("<table width=400><tr><td align='left'>\n");
filterButtons(filterTypeVar, filterTypeVal, FALSE);
printf("</br>");
-printf("<B>Combination Logic:</B> ");
-radioButton(logicTypeVar, logicTypeVal, "and");
-radioButton(logicTypeVar, logicTypeVal, "or");
-printf("</br>");
/* List various fields you can filter on. */
cg = startControlGrid(4, NULL);
for (fil = mud->filterList; fil != NULL; fil = fil->next)
oneMrnaFilterUi(cg, fil->label, fil->key, cart);