aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2019-06-23 09:49:41 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2019-06-23 09:49:41 +1000
commit9c8aa71e5d2ff653819b33a9a755934f93c13796 (patch)
tree3200e07f59ebdd022cc09871994ead8625183370
parent475d2bb335bd849eb87feebac9ad34768f534f51 (diff)
downloadscintilla-mirror-9c8aa71e5d2ff653819b33a9a755934f93c13796.tar.gz
Backport: Feature [feature-requests:#1297] Fixed one INDIC_IME forgotten in 7594.
Backport of changeset 7600:d4e5c9a89da4.
-rw-r--r--cocoa/ScintillaView.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaView.mm b/cocoa/ScintillaView.mm
index 0dcca1481..d61c00e6b 100644
--- a/cocoa/ScintillaView.mm
+++ b/cocoa/ScintillaView.mm
@@ -1502,7 +1502,7 @@ sourceOperationMaskForDraggingContext: (NSDraggingContext) context
const bool drawInBackground = [self message: SCI_GETPHASESDRAW] != 0;
[self setGeneralProperty: SCI_INDICSETUNDER parameter: INDICATOR_IME value: drawInBackground];
[self setGeneralProperty: SCI_INDICSETSTYLE parameter: INDICATOR_IME value: INDIC_PLAIN];
- [self setGeneralProperty: SCI_INDICSETALPHA parameter: INDIC_IME value: 100];
+ [self setGeneralProperty: SCI_INDICSETALPHA parameter: INDICATOR_IME value: 100];
}
//--------------------------------------------------------------------------------------------------