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:
62d405c
)
fix input shapes for frames of shaped windows
author
Mike Blumenkrantz
<m.blumenkran@samsung.com>
Wed, 17 Apr 2013 05:12:37 +0000
(06:12 +0100)
committer
Mike Blumenkrantz
<m.blumenkran@samsung.com>
Wed, 17 Apr 2013 05:12:37 +0000
(06:12 +0100)
src/bin/e_comp.c
patch
|
blob
|
history
diff --git
a/src/bin/e_comp.c
b/src/bin/e_comp.c
index
e183a61
..
929834d
100644
(file)
--- a/
src/bin/e_comp.c
+++ b/
src/bin/e_comp.c
@@
-3681,7
+3681,13
@@
_e_comp_shapes_update_comp_win_shape_comp_helper(E_Comp_Win *cw, Eina_Tiler *tb)
{
int num;
Ecore_X_Rectangle *rect;
-
+
+ /* add the frame */
+ if (cw->bd)
+ {
+ eina_tiler_rect_add(tb, &(Eina_Rectangle){cw->bd->x, cw->bd->y, cw->bd->w, cw->bd->h});
+ SHAPE_INF("ADD: %d,%d@%dx%d", cw->bd->x, cw->bd->y, cw->bd->w, cw->bd->h);
+ }
for (num = 0, rect = cw->rects; num < cw->rects_num; num++, rect++)
{
x = rect->x, y = rect->y, w = rect->width, h = rect->height;