diff --git a/etherpad/src/plugins/sketchSpace/static/js/sketchSpaceDesigner/designer/modes/Select.js b/etherpad/src/plugins/sketchSpace/static/js/sketchSpaceDesigner/designer/modes/Select.js index acc25a38..b4a31e46 100644 --- a/etherpad/src/plugins/sketchSpace/static/js/sketchSpaceDesigner/designer/modes/Select.js +++ b/etherpad/src/plugins/sketchSpace/static/js/sketchSpaceDesigner/designer/modes/Select.js @@ -77,12 +77,13 @@ dojo.declare("sketchSpaceDesigner.designer.modes.Select", [sketchSpaceDesigner.d onShapeMouseDown: function (shape, event) { this.inherited(arguments); - this.onOutlineMouseDown(event); + if (event.button == 0) + this.onOutlineMouseDown(event); }, onShapeMouseUp: function (shape, event) { this.inherited(arguments); - if (!this.isOutlineMoving) + if (event.button == 0 && !this.isOutlineMoving) this.designer.selection.toggleShape(shape, !event.ctrlKey); },