[Glitch] Allow Ctrl-click to keep EmojiPicker window open

Port 64154c5161 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
master
Brian C. Lindner 4 years ago committed by Thibaut Girka
parent 89de02f7aa
commit a8559458c3
  1. 7
      app/javascript/flavours/glitch/features/emoji_picker/index.js

@ -279,12 +279,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);
}

Loading…
Cancel
Save