ignore other than left press events in edit.js, this makes the rightclick camera more confortable while in edit.js/edit mode

This commit is contained in:
Thijs Wenker 2015-11-24 19:35:10 +01:00
parent d32e500464
commit 712048ce51

View file

@ -738,6 +738,10 @@ var mousePressStartPosition = {
var mouseDown = false;
function mousePressEvent(event) {
if (!event.isLeftButton) {
// If another mouse button than left is pressed ignore it
return false;
}
mouseDown = true;
mousePressStartPosition = {
x: event.x,