1
0
mirror of https://github.com/mastodon/mastodon synced 2025-01-18 15:53:00 +09:00

Only open status on left mouse press

This commit is contained in:
blackle 2017-01-25 20:43:41 -05:00
parent 97da56d02b
commit 6bba337080

View File

@ -69,7 +69,7 @@ const StatusContent = React.createClass({
return;
}
if (deltaX + deltaY < 5) {
if (deltaX + deltaY < 5 && e.button === 0) {
this.props.onClick();
}