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

Port 64154c5161 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
main
Brian C. Lindner 4 years ago committed by Thibaut Girka
parent 89de02f7aa
commit a8559458c3

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

Loading…
Cancel
Save