diff options
author | culler <culler> | 2019-10-22 16:08:31 (GMT) |
---|---|---|
committer | culler <culler> | 2019-10-22 16:08:31 (GMT) |
commit | 650e19c98ffa1384bee8bf2237a85cd524532ea1 (patch) | |
tree | 3739e7b9a17b9f68c672f0c973c0c06b2536991c /macosx/tkMacOSXPrivate.h | |
parent | e5ec9901434a09547d80a2fa1f351dedcf9e7f1b (diff) | |
download | tk-650e19c98ffa1384bee8bf2237a85cd524532ea1.zip tk-650e19c98ffa1384bee8bf2237a85cd524532ea1.tar.gz tk-650e19c98ffa1384bee8bf2237a85cd524532ea1.tar.bz2 |
Fix [39de9677aa]: incorrect IME behavior
Diffstat (limited to 'macosx/tkMacOSXPrivate.h')
-rw-r--r-- | macosx/tkMacOSXPrivate.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/macosx/tkMacOSXPrivate.h b/macosx/tkMacOSXPrivate.h index 8335095..0f1fbca 100644 --- a/macosx/tkMacOSXPrivate.h +++ b/macosx/tkMacOSXPrivate.h @@ -340,7 +340,12 @@ VISIBILITY_HIDDEN @end VISIBILITY_HIDDEN -@interface TKContentView : NSView <NSTextInput> +/* + * Subclass TKContentView from NSTextInputClient to enable composition and + * input from the Character Palette. + */ + +@interface TKContentView : NSView <NSTextInputClient> { @private NSString *privateWorkingText; |