Add missing Keys to the mapping table (ecore wayland) 60/202060/3
authorJiyun Yang <ji.yang@samsung.com>
Fri, 22 Mar 2019 07:08:01 +0000 (16:08 +0900)
committerJiyun Yang <ji.yang@samsung.com>
Tue, 26 Mar 2019 12:32:34 +0000 (21:32 +0900)
Basic Up and Down keys were missing in the ecore wayland key mapping table.

Change-Id: I47f4736c88388872c5a1ef87b46d2551ea917b9b
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
dali/internal/input/tizen-wayland/key-mapping-ecore-wl.cpp

index 3877e99..5135819 100644 (file)
@@ -81,8 +81,8 @@ KeyLookup KeyLookupTable[]=
   { "BackSpace",             DALI_KEY_BACKSPACE,                                         false },
   { "Left",                  DALI_KEY_CURSOR_LEFT,                                       false },
   { "Right",                 DALI_KEY_CURSOR_RIGHT,                                      false },
-  { "left",                  DALI_KEY_CURSOR_LEFT,                                       false }, // To be removed after the key name is fixed in the platform
-  { "right",                 DALI_KEY_CURSOR_RIGHT,                                      false }, // To be removed after the key name is fixed in the platform
+  { "Up",                    DALI_KEY_CURSOR_UP,                                         false },
+  { "Down",                  DALI_KEY_CURSOR_DOWN,                                       false },
   { "Shift_L",               DALI_KEY_SHIFT_LEFT,                                        false },
   { "Shift_R",               DALI_KEY_SHIFT_RIGHT,                                       false },
   { "Delete",                static_cast<Dali::KEY>( DevelKey::DALI_KEY_DELETE ),        false },