diff options
author | Eduardo Lima (Etrunko) <eduardo.lima@intel.com> | 2013-09-23 18:25:14 -0300 |
---|---|---|
committer | Eduardo Lima (Etrunko) <eduardo.lima@intel.com> | 2013-09-23 18:25:48 -0300 |
commit | ef1d02c848049d7199a0c043957136184ea0ded3 (patch) | |
tree | f8dc64c11e32b0227611e7d9fe2d3168d152ee07 | |
parent | 638bb99751938fc80ae433c2e6003316d9cf5449 (diff) | |
download | weekeyboard-ef1d02c848049d7199a0c043957136184ea0ded3.tar.gz weekeyboard-ef1d02c848049d7199a0c043957136184ea0ded3.tar.bz2 weekeyboard-ef1d02c848049d7199a0c043957136184ea0ded3.zip |
Force engine to Wayland SHMsubmit/tizen/20130923.214204
This is a way to workaround an issue that only happens with the EFL 1.7.
The keyboard will not show up if the selected engine is EGL. With this
patch we can workaround this issue while the real cause of the problem
is being tracked down.
Change-Id: I0332e76d54117d067716b58581061b67037660cb
Signed-off-by: Eduardo Lima (Etrunko) <eduardo.lima@intel.com>
-rw-r--r-- | packaging/weekeyboard.changes | 3 | ||||
-rw-r--r-- | src/wkb-main.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/packaging/weekeyboard.changes b/packaging/weekeyboard.changes index ad11f8b..db9aa32 100644 --- a/packaging/weekeyboard.changes +++ b/packaging/weekeyboard.changes @@ -1,3 +1,6 @@ +* Mon Sep 23 2013 Eduardo Lima (Etrunko) <eduardo.lima@intel.com> accepted/tizen/20130918.203201@76fb874 +- Force engine to Wayland SHM + * Mon Sep 23 2013 Eduardo Lima (Etrunko) <eduardo.lima@intel.com> accepted/tizen/20130918.203201@e8b7d28 - Print output messages to stderr instead of stdout diff --git a/src/wkb-main.c b/src/wkb-main.c index d5f2c1b..f2dc9af 100644 --- a/src/wkb-main.c +++ b/src/wkb-main.c @@ -540,7 +540,7 @@ _wkb_check_evas_engine(struct weekeyboard *wkb) goto err; } - wkb->ee_engine = env; + wkb->ee_engine = "wayland_shm";//env; ret = EINA_TRUE; err: |