2681b20edd79e1a1416c474da922f9c01898c7cc hiram Fri Nov 6 10:24:19 2020 -0800 turn mouse overs off for rm26491 patch refs #26491 diff --git src/hg/hgTracks/wigTrack.c src/hg/hgTracks/wigTrack.c index 39887fb..0edb936 100644 --- src/hg/hgTracks/wigTrack.c +++ src/hg/hgTracks/wigTrack.c @@ -879,31 +879,31 @@ && width < winEnd-winStart); /* start new data for a new track, freez old data if exists */ if (enableMouseOver) { if (mouseOverData) { mouseOverIdx = -1; freez(&mouseOverData); } AllocArray(mouseOverData, width); } int mouseOverX2 = -1; double previousValue = 0; -boolean skipMouseOvers = FALSE; +boolean skipMouseOvers = TRUE; #define epsilonLimit 1.0e-6 /* right now this is a simple pixel by pixel loop. Future * enhancements could draw boxes where pixels * are all the same height in a run. */ for (x1 = 0; x1 < width; ++x1) { int x = x1 + xOff; int preDrawIndex = x1 + preDrawZero; struct preDrawElement *p = &preDraw[preDrawIndex]; /* ===== mouseOver calculations===== */ if (enableMouseOver) { if (!skipMouseOvers && (p->count > 0)) /* checking mouseOver construction */