diff options
author | Neil Hodgson <devnull@localhost> | 2015-01-14 13:45:27 +1100 |
---|---|---|
committer | Neil Hodgson <devnull@localhost> | 2015-01-14 13:45:27 +1100 |
commit | bf7156b2e354a855e4ad49078d2a2825b7a88d8e (patch) | |
tree | 7d59c033955da18a91b9eb243995ef04eb4c7042 | |
parent | 1f74746e64bbcc0bda4d4443f7238825e938d8bb (diff) | |
download | scintilla-mirror-bf7156b2e354a855e4ad49078d2a2825b7a88d8e.tar.gz |
Make Japanese IME work in windowed mode.
From johnsonj.
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 9f8a8b6b8..4e740fbf2 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -2619,7 +2619,7 @@ void ScintillaGTK::PreeditChangedWindowedThis() { } void ScintillaGTK::PreeditChanged(GtkIMContext *, ScintillaGTK *sciThis) { - if (sciThis->imeInteraction == imeInline || sciThis->KoreanIME()) { + if (sciThis->imeInteraction == imeInline) { sciThis->PreeditChangedInlineThis(); } else { sciThis->PreeditChangedWindowedThis(); |