From: NakGyeong Kim Date: Wed, 8 Jun 2016 04:41:22 +0000 (+0900) Subject: ecore_wl_input: Add option for key conversion X-Git-Tag: accepted/tizen/common/20160616.151649~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F96%2F73396%2F2;p=platform%2Fupstream%2Fefl.git ecore_wl_input: Add option for key conversion Signed-off-by: NakGyeong Kim Change-Id: Idad899845c4d90f4f2efbbc3682f10085cdc76f8 --- diff --git a/src/lib/ecore_wayland/ecore_wl_input.c b/src/lib/ecore_wayland/ecore_wl_input.c index cc0018c..c51db33 100644 --- a/src/lib/ecore_wayland/ecore_wl_input.c +++ b/src/lib/ecore_wayland/ecore_wl_input.c @@ -950,6 +950,12 @@ _ecore_wl_input_convert_old_keys(unsigned int code) { int i; + // TIZEN ONLY(20160608) : Add option for key conversion + const char *tmp; + tmp = getenv("ECORE_WL_INPUT_KEY_CONVERSION_DISABLE"); + if (tmp && atoi(tmp)) return code; + // + for (i = 0; i < _num_back_key_latest; i++) { if (code == _back_key_latest[i])