Merge pull request #4197 from huffman/fix-mouse-camera-controls

Remove call to gridTool.mousePressEvent
This commit is contained in:
Brad Hefta-Gaub 2015-01-30 08:57:17 -08:00
commit ba79a3d70e

View file

@ -512,7 +512,7 @@ function mousePressEvent(event) {
mouseHasMovedSincePress = false;
mouseCapturedByTool = false;
if (toolBar.mousePressEvent(event) || progressDialog.mousePressEvent(event) || gridTool.mousePressEvent(event)) {
if (toolBar.mousePressEvent(event) || progressDialog.mousePressEvent(event)) {
mouseCapturedByTool = true;
return;
}