Fixed issue 750: Middle click start selection

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1900 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Alexis Deveria 2011-01-10 18:42:42 +00:00
parent 1b7e991bfe
commit be53f2a360
1 changed files with 1 additions and 1 deletions

View File

@ -2491,7 +2491,7 @@ var getMouseTarget = this.getMouseTarget = function(evt) {
// and do nothing else // and do nothing else
var mouseDown = function(evt) var mouseDown = function(evt)
{ {
if(canvas.spaceKey) return; if(canvas.spaceKey || evt.button === 1) return;
var right_click = evt.button === 2; var right_click = evt.button === 2;