This website works better with JavaScript.
Home
Explore
Help
Sign In
nekobus
/
mastodon_neko
forked from
closed-social/mastodon
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Fix modifier key to keep the EmojiPicker on macOS (
#14096
)
closed-social-v3
Takeshi Umeda
4 years ago
committed by
GitHub
parent
cb3c6d1780
commit
434a6d0b15
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js
+ 1
- 1
app/javascript/mastodon/features/compose/components/emoji_picker_dropdown.js
View File
@ -203,7 +203,7 @@ class EmojiPickerMenu extends React.PureComponent {
if
(
!
emoji
.
native
)
{
emoji
.
native
=
emoji
.
colons
;
}
if
(
!
event
.
ctrlKey
)
{
if
(
!
(
event
.
ctrlKey
||
event
.
metaKey
)
)
{
this
.
props
.
onClose
(
)
;
}
this
.
props
.
onPick
(
emoji
)
;
Write
Preview
Loading…
Cancel
Save