summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXPrivate.h
diff options
context:
space:
mode:
authorculler <culler>2019-10-22 16:08:31 (GMT)
committerculler <culler>2019-10-22 16:08:31 (GMT)
commit650e19c98ffa1384bee8bf2237a85cd524532ea1 (patch)
tree3739e7b9a17b9f68c672f0c973c0c06b2536991c /macosx/tkMacOSXPrivate.h
parente5ec9901434a09547d80a2fa1f351dedcf9e7f1b (diff)
downloadtk-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.h7
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;