projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c413b12
)
buffer_flush: no flush for uniconic client
98/170798/1
author
Juyeon Lee
<juyeonne.lee@samsung.com>
Thu, 22 Feb 2018 07:26:56 +0000
(16:26 +0900)
committer
Juyeon Lee
<juyeonne.lee@samsung.com>
Thu, 22 Feb 2018 07:26:58 +0000
(16:26 +0900)
client such as keyboard is handled in e_mod_tizen_wl_textinput
and it never be in iconic state(ec->exp_iconify.skip_iconify = 1)
once it keyboard window is hide, the buffer shall not be flushed
Change-Id: I0e1fb43c7a09f5d5b0800905ac92e0c327d14890
src/bin/e_policy_visibility.c
patch
|
blob
|
history
diff --git
a/src/bin/e_policy_visibility.c
b/src/bin/e_policy_visibility.c
index 6d82eab45bf9699d3f80fb2923a8f7d1931cd0f1..ca1f585e7818abe99030421cccd1076509fae3b7 100644
(file)
--- a/
src/bin/e_policy_visibility.c
+++ b/
src/bin/e_policy_visibility.c
@@
-946,7
+946,7
@@
_e_vis_client_cb_evas_hide(void *data EINA_UNUSED, Evas *e EINA_UNUSED, Evas_Obj
VS_DBG(ec, "\tUPDATE ICONIC STATE: %s", STATE_STR(vc));
vc->prepare_emitted = 0;
- if (ec->exp_iconify.buffer_flush)
+ if (ec->
iconic && ec->
exp_iconify.buffer_flush)
e_pixmap_buffer_clear(ec->pixmap, EINA_FALSE);
}