Remove call to gridTool.mousePressEvent

This commit is contained in:
Ryan Huffman 2015-01-30 08:56:37 -08:00
parent 5e327e7806
commit 5d8825f5eb

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;
}