Only open status on left mouse press
This commit is contained in:
parent
97da56d02b
commit
6bba337080
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ const StatusContent = React.createClass({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (deltaX + deltaY < 5) {
|
if (deltaX + deltaY < 5 && e.button === 0) {
|
||||||
this.props.onClick();
|
this.props.onClick();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue