Allow Ctrl-click to keep EmojiPicker window open (#13896)
This commit is contained in:
		@@ -199,12 +199,13 @@ class EmojiPickerMenu extends React.PureComponent {
 | 
			
		||||
    };
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  handleClick = emoji => {
 | 
			
		||||
  handleClick = (emoji, event) => {
 | 
			
		||||
    if (!emoji.native) {
 | 
			
		||||
      emoji.native = emoji.colons;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    this.props.onClose();
 | 
			
		||||
    if (!event.ctrlKey) {
 | 
			
		||||
      this.props.onClose();
 | 
			
		||||
    }
 | 
			
		||||
    this.props.onPick(emoji);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user