diff options
| author | Neil Hodgson <nyamatongwe@gmail.com> | 2019-06-23 09:49:41 +1000 |
|---|---|---|
| committer | Neil Hodgson <nyamatongwe@gmail.com> | 2019-06-23 09:49:41 +1000 |
| commit | b576eacdb617861f870abf117d40e4f70d92bf35 (patch) | |
| tree | 55b24595fa69e8933d476c83e82ade7085105882 | |
| parent | 6874c57e9db4376d7ca79a6bb91e460cd7320ec1 (diff) | |
| download | scintilla-mirror-b576eacdb617861f870abf117d40e4f70d92bf35.tar.gz | |
Feature [feature-requests:#1297] Fixed one INDIC_IME forgotten in 7594.
| -rw-r--r-- | cocoa/ScintillaView.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaView.mm b/cocoa/ScintillaView.mm index fdf5c3374..e534a01aa 100644 --- a/cocoa/ScintillaView.mm +++ b/cocoa/ScintillaView.mm @@ -1378,7 +1378,7 @@ static NSCursor *cursorFromEnum(Window::Cursor cursor) { 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]; } //-------------------------------------------------------------------------------------------------- |
