projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
578eb2a
)
ecore_wl_input: Add option for key conversion
96/73396/2
author
NakGyeong Kim
<nakkyong.kim@samsung.com>
Wed, 8 Jun 2016 04:41:22 +0000
(13:41 +0900)
committer
NakGyeong
<nakkyong.kim@samsung.com>
Tue, 14 Jun 2016 05:39:14 +0000
(22:39 -0700)
Signed-off-by: NakGyeong Kim <nakkyong.kim@samsung.com>
Change-Id: Idad899845c4d90f4f2efbbc3682f10085cdc76f8
src/lib/ecore_wayland/ecore_wl_input.c
patch
|
blob
|
history
diff --git
a/src/lib/ecore_wayland/ecore_wl_input.c
b/src/lib/ecore_wayland/ecore_wl_input.c
index
cc0018c
..
c51db33
100644
(file)
--- 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])