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:
c1aa8af
)
added code to change ec->visible when ec->frame is shown/hidden
79/63979/1
author
Doyoun Kang
<doyoun.kang@samsung.com>
Tue, 29 Mar 2016 06:45:20 +0000
(15:45 +0900)
committer
Doyoun Kang
<doyoun.kang@samsung.com>
Tue, 29 Mar 2016 06:45:20 +0000
(15:45 +0900)
Change-Id: Ifbd3fcdc72688ee282f5748ad8212aeeadbec6e7
src/e_mod_input_panel.c
patch
|
blob
|
history
diff --git
a/src/e_mod_input_panel.c
b/src/e_mod_input_panel.c
index
6f0c291
..
f9eff00
100644
(file)
--- a/
src/e_mod_input_panel.c
+++ b/
src/e_mod_input_panel.c
@@
-165,12
+165,16
@@
_e_input_panel_surface_visible_update(E_Input_Panel_Surface *ips)
{
_e_input_panel_position_set(ec, ec->client.w, ec->client.h);
+ ec->visible = EINA_TRUE;
evas_object_geometry_set(ec->frame, ec->x, ec->y, ec->w, ec->h);
evas_object_show(ec->frame);
e_comp_object_damage(ec->frame, 0, 0, ec->w, ec->h);
}
else
- evas_object_hide(ec->frame);
+ {
+ ec->visible = EINA_FALSE;
+ evas_object_hide(ec->frame);
+ }
}
static void