[Libreoffice-bugs] [Bug 117008] Last-letter bug in korean
bugzilla-daemon at bugs.documentfoundation.org
bugzilla-daemon at bugs.documentfoundation.org
Mon Sep 3 22:17:33 UTC 2018
https://bugs.documentfoundation.org/show_bug.cgi?id=117008
--- Comment #8 from cogniti at gmail.com <cogniti at gmail.com> ---
I have no time to compile and test it.
hodong at debian:~/Downloads/libreoffice-5.2.7.2$ git diff
diff --git a/vcl/unx/generic/app/i18n_ic.cxx b/vcl/unx/generic/app/i18n_ic.cxx
index a67e589..fedf1de 100644
--- a/vcl/unx/generic/app/i18n_ic.cxx
+++ b/vcl/unx/generic/app/i18n_ic.cxx
@@ -618,6 +618,17 @@ SalI18N_InputContext::UnsetICFocus( SalFrame* pFrame )
}
}
+void
+SalI18N_InputContext::ResetIC()
+{
+ if ( mbUseable && (maContext != nullptr) && maClientData.pFrame )
+ {
+ char *text;
+ text = Xutf8ResetIC( maContext );
+ free (text);
+ }
+}
+
// multi byte input method only
void
diff --git a/vcl/unx/generic/window/salframe.cxx
b/vcl/unx/generic/window/salframe.cxx
index 061abbf..50326c1 100644
--- a/vcl/unx/generic/window/salframe.cxx
+++ b/vcl/unx/generic/window/salframe.cxx
@@ -2653,6 +2653,7 @@ long X11SalFrame::HandleMouseEvent( XEvent *pEvent )
}
else if( pEvent->type == ButtonPress )
{
+ mpInputContext->ResetIC();
// see if the user clicks outside all of the floats
// if yes release the grab
bool bInside = false;
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice-bugs/attachments/20180903/65f083e7/attachment.html>
More information about the Libreoffice-bugs
mailing list