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

Port f8f195b8c2 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
lolsob-rspec
Brian C. Lindner 2020-05-31 14:34:34 -04:00 committed by Thibaut Girka
parent 61f1d4dbbf
commit f8980d714a
1 changed files with 4 additions and 3 deletions

View File

@ -279,12 +279,13 @@ class EmojiPickerMenu extends React.PureComponent {
};
}
handleClick = emoji => {
handleClick = (emoji, event) => {
if (!emoji.native) {
emoji.native = emoji.colons;
}
if (!event.ctrlKey) {
this.props.onClose();
}
this.props.onPick(emoji);
}