From: InHong Han Date: Fri, 27 Dec 2019 03:58:30 +0000 (+0900) Subject: Modified to set valid Ecore_IMF_Preedit_Attr's end_index X-Git-Tag: accepted/tizen/5.5/unified/20191230.212237~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3073810e5467ff29e64d5bd949a77e09e958e729;p=platform%2Fcore%2Fuifw%2Fisf.git Modified to set valid Ecore_IMF_Preedit_Attr's end_index Change-Id: Ifa332c1a9c53082dd5babaf476e750edd6d09181 --- diff --git a/ism/modules/panelagent/wayland/wayland_panel_agent_module.cpp b/ism/modules/panelagent/wayland/wayland_panel_agent_module.cpp index b663147..b284934 100644 --- a/ism/modules/panelagent/wayland/wayland_panel_agent_module.cpp +++ b/ism/modules/panelagent/wayland/wayland_panel_agent_module.cpp @@ -1911,7 +1911,7 @@ wsc_send_preedit_style (WSCContextISF* wsc_ctx) wl_input_method_context_preedit_styling (wsc_ctx->im_ctx, start_index, - end_index, + end_index - start_index, preedit_style); switch (i->get_value ()) @@ -1951,7 +1951,7 @@ wsc_send_preedit_style (WSCContextISF* wsc_ctx) wl_input_method_context_preedit_styling (wsc_ctx->im_ctx, start_index, - end_index, + end_index - start_index, preedit_style); } }