9789889065a07ff41bfe48362fde4ca9f3f0f9a2 braney Fri Jul 9 17:02:19 2010 -0700 fix problem caused by the fact that now colors have the top bit set so they're negative in an int. diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c index 2c738ac..c379997 100644 --- src/hg/hgTracks/simpleTracks.c +++ src/hg/hgTracks/simpleTracks.c @@ -2352,7 +2352,7 @@ struct hvGfx *hvg, Color *retColor, Color *retBarbColor) /* Figure out color to draw linked feature in. */ { -if (lf->filterColor > 0) +if (!((lf->filterColor == 0) || (lf->filterColor == -1))) { if (lf->extra == (void *)USE_ITEM_RGB) {