diff options
author | johnsonj <unknown> | 2023-07-14 16:48:58 +1000 |
---|---|---|
committer | johnsonj <unknown> | 2023-07-14 16:48:58 +1000 |
commit | 9377739727201262b06048e5b0612c4171ade4d9 (patch) | |
tree | 53b180c8794a0ad09b843e88cdd1918af1a33cd9 /win32 | |
parent | 75dd033787929345584b1c0949684ba59c960566 (diff) | |
download | scintilla-mirror-9377739727201262b06048e5b0612c4171ade4d9.tar.gz |
Feature [feature-requests:#1488] Stop aligning IME candidate window to target on
Win32 and Qt.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/ScintillaWin.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index e38ba6386..b43503615 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1324,11 +1324,6 @@ sptr_t ScintillaWin::HandleCompositionInline(uptr_t, sptr_t lParam) { const Sci::Position imeCaretPosDoc = pdoc->GetRelativePositionUTF16(currentPos, imeEndToImeCaretU16); MoveImeCarets(-currentPos + imeCaretPosDoc); - - if (std::find(imeIndicator.begin(), imeIndicator.end(), IndicatorTarget) != imeIndicator.end()) { - // set candidate window left aligned to beginning of target string. - SetCandidateWindowPos(); - } } } |