when falling back to passthru with xim imf module... just use the

compose string provided! :)



SVN revision: 75423
This commit is contained in:
Carsten Haitzler 2012-08-19 03:31:53 +00:00
parent c9b7e56635
commit 8d6dbed30d
1 changed files with 1 additions and 12 deletions

View File

@ -738,18 +738,7 @@ _ecore_imf_context_xim_filter_event(Ecore_IMF_Context *ctx,
}
else
{
XComposeStatus status;
val = XLookupString(&xev,
compose_buffer,
sizeof(compose_buffer),
&sym,
&status);
if (val > 0)
{
compose_buffer[val] = '\0';
compose = eina_str_convert(nl_langinfo(CODESET),
"UTF-8", compose_buffer);
}
compose = strdup(ev->compose);
}
if (compose)