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
				
			
		|  | @ -47,7 +47,7 @@ const mapDispatchToProps = (dispatch) => ({ | ||||||
|     if (status.get('reblogged')) { |     if (status.get('reblogged')) { | ||||||
|       dispatch(unreblog(status)); |       dispatch(unreblog(status)); | ||||||
|     } else { |     } else { | ||||||
|       if (e.altKey || !this.boostModal) { |       if (e.shiftKey || !this.boostModal) { | ||||||
|         this.onModalReblog(status); |         this.onModalReblog(status); | ||||||
|       } else { |       } else { | ||||||
|         dispatch(openModal('BOOST', { status, onReblog: this.onModalReblog })); |         dispatch(openModal('BOOST', { status, onReblog: this.onModalReblog })); | ||||||
|  |  | ||||||
|  | @ -92,7 +92,7 @@ const Status = React.createClass({ | ||||||
|     if (status.get('reblogged')) { |     if (status.get('reblogged')) { | ||||||
|       this.props.dispatch(unreblog(status)); |       this.props.dispatch(unreblog(status)); | ||||||
|     } else { |     } else { | ||||||
|       if (e.altKey || !this.props.boostModal) { |       if (e.shiftKey || !this.props.boostModal) { | ||||||
|         this.handleModalReblog(status); |         this.handleModalReblog(status); | ||||||
|       } else { |       } else { | ||||||
|         this.props.dispatch(openModal('BOOST', { status, onReblog: this.handleModalReblog })); |         this.props.dispatch(openModal('BOOST', { status, onReblog: this.handleModalReblog })); | ||||||
|  |  | ||||||
|  | @ -65,7 +65,7 @@ const BoostModal = React.createClass({ | ||||||
|         </div> |         </div> | ||||||
| 
 | 
 | ||||||
|         <div className='boost-modal__action-bar'> |         <div className='boost-modal__action-bar'> | ||||||
|           <div><FormattedMessage id='boost_modal.combo' defaultMessage='You can press {combo} to skip this next time' values={{ combo: <span>Alt + <i className='fa fa-retweet' /></span> }} /></div> |           <div><FormattedMessage id='boost_modal.combo' defaultMessage='You can press {combo} to skip this next time' values={{ combo: <span>Shift + <i className='fa fa-retweet' /></span> }} /></div> | ||||||
|           <Button text={intl.formatMessage(messages.reblog)} onClick={this.handleReblog} /> |           <Button text={intl.formatMessage(messages.reblog)} onClick={this.handleReblog} /> | ||||||
|         </div> |         </div> | ||||||
|       </div> |       </div> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue