remove unneeded check from copy-paste

This commit is contained in:
Stephen Birarda 2016-07-12 15:43:57 -07:00
parent aeabae4faf
commit 599d9c568a

View file

@ -111,7 +111,7 @@ AvatarList.avatarRemovedEvent.connect(function(avatarID){
Controller.mousePressEvent.connect(function(event){
// handle click events so we can detect when our overlays are clicked
if (!event.isLeftButton && !that.triggered) {
if (!event.isLeftButton) {
// if another mouse button than left is pressed ignore it
return false;
}