+ chg: allow coexisting Auto-Completion and IME for non "AutoC ASCII-Only" mode.

This commit is contained in:
Rainer Kottenhoff 2018-09-14 14:44:26 +02:00
parent a09dd1fb38
commit 13691e4631

View File

@ -6149,7 +6149,7 @@ static void __fastcall _HandleTinyExpr()
}
}
#if 0
//=============================================================================
//
// _IsIMEOpenInNativeMode()
@ -6169,6 +6169,7 @@ static bool __fastcall _IsIMEOpenInNativeMode()
}
return result;
}
#endif
//=============================================================================
//
@ -6366,7 +6367,7 @@ LRESULT MsgNotify(HWND hwnd, WPARAM wParam, LPARAM lParam)
}
if ((g_bAutoCompleteWords || g_bAutoCLexerKeyWords)) {
if ((g_bAutoCinASCIIModeOnly && (ich > 0x7F)) || (scn->modifiers != SC_CHARADDED_NORMAL)) {
if (g_bAutoCinASCIIModeOnly && ((ich > 0x7F) || (scn->modifiers != SC_CHARADDED_NORMAL))) {
SciCall_AutoCCancel();
return 0LL;
}