Use shift+click instead of alt+click to bypass boost dialog (#1638)
This commit is contained in:
parent
bd834add56
commit
1ea662963f
3 changed files with 3 additions and 3 deletions
|
@ -92,7 +92,7 @@ const Status = React.createClass({
|
|||
if (status.get('reblogged')) {
|
||||
this.props.dispatch(unreblog(status));
|
||||
} else {
|
||||
if (e.altKey || !this.props.boostModal) {
|
||||
if (e.shiftKey || !this.props.boostModal) {
|
||||
this.handleModalReblog(status);
|
||||
} else {
|
||||
this.props.dispatch(openModal('BOOST', { status, onReblog: this.handleModalReblog }));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue