From: Jiyun Yang Date: Fri, 22 Mar 2019 07:08:01 +0000 (+0900) Subject: [5.0] Add missing Keys to the mapping table (ecore wayland) X-Git-Tag: accepted/tizen/5.0/unified/20200928.011123^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=34f718afb64e9f99300b1f05b5e717c4e8355e1d;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git [5.0] Add missing Keys to the mapping table (ecore wayland) Basic Up and Down keys were missing in the ecore wayland key mapping table. Change-Id: I47f4736c88388872c5a1ef87b46d2551ea917b9b Signed-off-by: Jiyun Yang --- diff --git a/dali/internal/input/tizen-wayland/key-mapping-ecore-wl.cpp b/dali/internal/input/tizen-wayland/key-mapping-ecore-wl.cpp index 3877e99..5135819 100644 --- a/dali/internal/input/tizen-wayland/key-mapping-ecore-wl.cpp +++ b/dali/internal/input/tizen-wayland/key-mapping-ecore-wl.cpp @@ -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( DevelKey::DALI_KEY_DELETE ), false },