Fix handling of "Enter" key press 49/10249/1 accepted/tizen/20130925.175217 accepted/tizen/20130925.220645 submit/tizen/20130925.150625
authorJuan Zhao <juan.j.zhao@intel.com>
Tue, 24 Sep 2013 12:55:31 +0000 (12:55 +0000)
committerEduardo Lima (Etrunko) <eduardo.lima@intel.com>
Wed, 25 Sep 2013 14:44:44 +0000 (11:44 -0300)
Change-Id: I9f1fafb3690342cb5bbfdc23437bb953e20125d9
Signed-off-by: Eduardo Lima (Etrunko) <eduardo.lima@intel.com>
packaging/weekeyboard.changes
src/wkb-main.c

index db9aa32..dbfa961 100644 (file)
@@ -1,3 +1,6 @@
+* Wed Sep 25 2013 Eduardo Lima (Etrunko) <eduardo.lima@intel.com> submit/tizen/20130923.214204@41c7042
+- Fix handling of "Enter" key press
+
 * Mon Sep 23 2013 Eduardo Lima (Etrunko) <eduardo.lima@intel.com> accepted/tizen/20130918.203201@76fb874
 - Force engine to Wayland SHM
 
index f2dc9af..6b41947 100644 (file)
@@ -189,7 +189,9 @@ _cb_wkb_on_key_down(void *data, Evas_Object *obj, const char *emission EINA_UNUS
    else if (strcmp(key, "enter") == 0)
      {
         _wkb_commit_preedit_str(wkb);
-        /* wl_input_method_context_keysym(wkb->im_ctx, wkb->serial, time, XKB_KEY_Return, key_state, mod_mask); */
+        wl_input_method_context_keysym(wkb->im_ctx, wkb->serial, time,
+                       XKB_KEY_Return, WL_KEYBOARD_KEY_STATE_PRESSED,
+                       0);
         goto end;
      }
    else if (strcmp(key, "space") == 0)