1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

winemac.drv: Exclude the emoji Touch Bar when looking for input methods.

Fixes weird keyboard behavior on MacBooks with the Touch Bar.
This commit is contained in:
Tim Clem 2024-03-01 13:08:51 -08:00 committed by Alexandre Julliard
parent 55f71fd846
commit 93bc97e54f

View file

@ -2075,6 +2075,8 @@ static NSString* WineLocalizedString(unsigned int stringID)
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);