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:
a3ab0e5
)
e_comp_wl_shell: add error log for map window
79/195679/1
author
Doyoun Kang
<doyoun.kang@samsung.com>
Mon, 17 Dec 2018 00:43:35 +0000
(09:43 +0900)
committer
Doyoun Kang
<doyoun.kang@samsung.com>
Mon, 17 Dec 2018 08:05:04 +0000
(17:05 +0900)
Change-Id: I03f6953f36fdf2a65e72b9cad03ef60696fc9ec3
src/bin/e_comp_wl_shell.c
patch
|
blob
|
history
diff --git
a/src/bin/e_comp_wl_shell.c
b/src/bin/e_comp_wl_shell.c
index b250eb2b3841d87ed4078b39ddfed44b4d83ec23..1aebf1e2c938e57b4fc40779385234e8587c7651 100644
(file)
--- a/
src/bin/e_comp_wl_shell.c
+++ b/
src/bin/e_comp_wl_shell.c
@@
-1340,8
+1340,17
@@
e_shell_e_client_map(E_Client *ec)
EINA_SAFETY_ON_NULL_RETURN(ec);
- if ((ec->comp_data->mapped) || (!e_pixmap_usable_get(ec->pixmap)))
- return;
+ if (ec->comp_data->mapped)
+ {
+ ELOGF("SHELL", "Map window | Already mapped.", ec->pixmap, ec);
+ return;
+ }
+
+ if (!e_pixmap_usable_get(ec->pixmap))
+ {
+ ELOGF("SHELL", "Map window | No operation. Pixmap(%p) is not usable.", ec->pixmap, ec, ec->pixmap);
+ return;
+ }
cw = ec->w;
ch = ec->h;