From 9377739727201262b06048e5b0612c4171ade4d9 Mon Sep 17 00:00:00 2001 From: johnsonj Date: Fri, 14 Jul 2023 16:48:58 +1000 Subject: Feature [feature-requests:#1488] Stop aligning IME candidate window to target on Win32 and Qt. --- win32/ScintillaWin.cxx | 5 ----- 1 file changed, 5 deletions(-) (limited to 'win32') 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(); - } } } -- cgit v1.2.3