fdf4ab468565f1a46bfcda511737c1d6a4e79802
braney
  Tue May 20 12:08:33 2025 -0700
add a line break after place where filters go if there are no filters

diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index 5c49b81bc3b..bcefd0d993a 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -7080,30 +7080,32 @@
         printHighlightColorPicker(cart, tdb);
 
     if (!isBoxOpened)   // Note filterBy boxes are not double "boxed",
         printf("<BR>"); // if there are no other filters
     highlightBySetCfgUi(cart,tdb,highlightBySet,TRUE, name, TRUE);
     filterBySetFree(&highlightBySet);
     skipScoreFilter = TRUE;
     }
 
 boolean scoreFilterOk = (trackDbSettingClosestToHome(tdb, NO_SCORE_FILTER) == NULL) && !skipScoreFilter;
 boolean glvlScoreMin = (trackDbSettingClosestToHome(tdb, GRAY_LEVEL_SCORE_MIN) != NULL);
 if (! (scoreFilterOk || glvlScoreMin))
    {
    if (isBoxOpened)
       cfgEndBox(boxed);
+   else 
+      printf("<BR>"); 
    return;
    }
 
 boxed = cfgBeginBoxAndTitle(tdb, boxed, title);
 
 if (scoreFilterOk)
     {
     int minLimit=0,maxLimit=maxScore,minVal=0,maxVal=maxScore;
     getScoreIntRangeFromCart(cart,tdb,parentLevel,SCORE_FILTER,&minLimit,&maxLimit,
                                                                &minVal,  &maxVal);
 
     boolean filterByRange = trackDbSettingClosestToHomeOn(tdb, SCORE_FILTER _BY_RANGE);
     if (filterByRange)
         {
         puts("<B>Filter score range:  min:</B>");