From: Tim Clem tclem@codeweavers.com
Fixes weird keyboard behavior on MacBooks with the Touch Bar. --- dlls/winemac.drv/cocoa_app.m | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/winemac.drv/cocoa_app.m b/dlls/winemac.drv/cocoa_app.m index de3a23a5d2d..f6a9cd145ea 100644 --- a/dlls/winemac.drv/cocoa_app.m +++ b/dlls/winemac.drv/cocoa_app.m @@ -2075,6 +2075,8 @@ Dictation is its own source too (com.apple.inputmethod.ironwood), but CFSTR("com.apple.inputmethod.AssistiveControl"), /* The popup for accented characters when you hold down a key. */ CFSTR("com.apple.PressAndHold"), + /* Emoji list on MacBooks with the Touch Bar. */ + CFSTR("com.apple.inputmethod.EmojiFunctionRowItem"), };
CFStringRef sourceID = TISGetInputSourceProperty(inputSource, kTISPropertyInputSourceID);