From fd2876bd232beedd128755f3609765d9a2a133fa Mon Sep 17 00:00:00 2001 From: Ji-hoon Lee Date: Tue, 30 Apr 2013 16:49:21 +0900 Subject: [PATCH] Modified to send current input context for ISE to attach --- ism/src/scim_panel_agent.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ism/src/scim_panel_agent.cpp b/ism/src/scim_panel_agent.cpp index 9b54ab5..a2fa463 100644 --- a/ism/src/scim_panel_agent.cpp +++ b/ism/src/scim_panel_agent.cpp @@ -4613,6 +4613,11 @@ private: m_send_trans.put_data (icit->second [i].second); } m_start_helper_ic_index.erase (icit); + } else { + m_send_trans.put_command (SCIM_TRANS_CMD_HELPER_ATTACH_INPUT_CONTEXT); + uint32 ctx = get_helper_ic (m_current_socket_client, m_current_client_context); + m_send_trans.put_data (ctx); + m_send_trans.put_data (info.uuid); } m_send_trans.put_command (SCIM_TRANS_CMD_UPDATE_SCREEN); -- 2.7.4