projects
/
platform
/
core
/
uifw
/
e-mod-tizen-wl-textinput.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22ea94b
)
Dectect H/W keyboard when system restart
72/44172/1
author
Li Zhang
<li2012.zhang@samsung.com>
Fri, 17 Jul 2015 10:33:14 +0000
(18:33 +0800)
committer
Li Zhang
<li2012.zhang@samsung.com>
Fri, 17 Jul 2015 10:33:14 +0000
(18:33 +0800)
Change-Id: If9b6bc4652b17ba21cefdbd30bcffa3dfcf3f495
src/e_mod_main.c
patch
|
blob
|
history
diff --git
a/src/e_mod_main.c
b/src/e_mod_main.c
index b33f0d51fcc7c7544722b413832e0e586f66c588..7362f88eff42c6f4f6b2817b15f5704aaa5c8ef7 100644
(file)
--- a/
src/e_mod_main.c
+++ b/
src/e_mod_main.c
@@
-954,7
+954,7
@@
EAPI void *
e_modapi_init(E_Module *m)
{
E_Comp_Data *cdata = NULL;
-
+ Eina_List *keyboard_list = NULL;
if (!e_comp) return NULL;
if (!(cdata = e_comp->wl_comp_data)) return NULL;
@@
-976,6
+976,13
@@
e_modapi_init(E_Module *m)
if (!eeze_udev_watch_hander)
goto err;
+ keyboard_list = eeze_udev_find_by_type(EEZE_UDEV_TYPE_KEYBOARD, NULL);
+ if (keyboard_list != NULL)
+ {
+ g_keyboard_connecting = EINA_TRUE;
+ eina_list_free(keyboard_list);
+ }
+
return m;
err:
_e_mod_text_input_shutdown();