summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <m.blumenkran@samsung.com>2013-06-24 10:07:30 +0100
committerMike Blumenkrantz <m.blumenkran@samsung.com>2013-06-24 10:07:30 +0100
commit32999cfe08d782951209010a4c6f6650b4a3f377 (patch)
tree1c8c5472518dce41c9ff1e61d00aada7a9e16034
parent30b83c7820970c6d35c211abc93423cc5a3d6e00 (diff)
downloadenlightenment-32999cfe08d782951209010a4c6f6650b4a3f377.tar.gz
block comp show events for comp wins with borders -- these get handled by the border show event
-rw-r--r--src/bin/e_comp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index 4be2fee463..cdb20a0d72 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -3009,7 +3009,7 @@ _e_comp_show(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
if (cw->free_shape) _e_comp_win_shape_create(cw, cw->x, cw->y, cw->w, cw->h);
}
cw->defer_hide = 0;
- if (cw->visible) return ECORE_CALLBACK_PASS_ON;
+ if (cw->visible || cw->bd) return ECORE_CALLBACK_PASS_ON;
_e_comp_win_show(cw);
return ECORE_CALLBACK_PASS_ON;
}