WTD-842: Fixing mouse click in a plot area gets interpreted as a marquee zoom with an extent of zero.

This commit is contained in:
bwyu
2015-03-12 14:50:44 -07:00
committed by Victor Woeltjen
parent ee04814f59
commit 1e6142ad45
2 changed files with 31 additions and 4 deletions

View File

@ -151,11 +151,14 @@ define(
Math.max(a[1], b[1]) - origin[1]
];
// Push the new state onto the pan-zoom stack
panZoomStack.pushPanZoom(origin, dimensions);
// Proceed with zoom if zoom dimensions are non zeros
if (!(dimensions[0] === 0 && dimensions[1] === 0)) {
// Push the new state onto the pan-zoom stack
panZoomStack.pushPanZoom(origin, dimensions);
// Make sure tick marks reflect new bounds
updateTicks();
// Make sure tick marks reflect new bounds
updateTicks();
}
}
// Start with the right initial drawing bounds,