projects
/
framework
/
uifw
/
edje.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0aec5d5
)
[entry] bug fix : keyboard doesn't appear when multibutton entry has focus again
author
Jihoon Kim
<jihoon48.kim@samsung.com>
Mon, 13 Jun 2011 08:06:13 +0000
(17:06 +0900)
committer
Jihoon Kim
<jihoon48.kim@samsung.com>
Mon, 13 Jun 2011 08:06:13 +0000
(17:06 +0900)
Change-Id: I2af3d76a121369905f706738ab1ef446c1d3e8df
src/lib/edje_entry.c
patch
|
blob
|
history
diff --git
a/src/lib/edje_entry.c
b/src/lib/edje_entry.c
index
6f3f629
..
093985f
100644
(file)
--- a/
src/lib/edje_entry.c
+++ b/
src/lib/edje_entry.c
@@
-191,15
+191,14
@@
_input_panel_hide(Entry *en)
static void
_input_panel_show(Entry *en)
{
- if (!en || !en->input_panel_enable) return;
-
if (hide_timer)
{
ecore_timer_del(hide_timer);
hide_timer = NULL;
}
- if(!en->imf_context) return;
+ if (!en || !en->input_panel_enable || !en->imf_context) return;
+
ecore_imf_context_input_panel_show(en->imf_context);
focused_entry = en;
}