From 1e0b199ff368739cd01a74b58f84e225cc5b3182 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Tue, 27 Mar 2001 18:52:09 +0000 Subject: [PATCH] fix that quickly... SVN revision: 4459 --- legacy/ecore/src/e_x.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/legacy/ecore/src/e_x.c b/legacy/ecore/src/e_x.c index 661e8d347f..62c32812c1 100644 --- a/legacy/ecore/src/e_x.c +++ b/legacy/ecore/src/e_x.c @@ -624,6 +624,7 @@ e_window_move(Window win, int x, int y) } xid->x = x; xid->y = y; + xid->coords_invalid = 0; XMoveWindow(disp, win, x, y); } } @@ -640,7 +641,13 @@ if (xid->children) \ xid2 = e_validate_xid(xid->children[j]); \ if (xid2) \ { \ - switch (xid2->gravity) \ + xid2->coords_invalid = 1; \ + } \ + } \ +} + +#if 0 + switch (xid2->gravity) \ { \ case UnmapGravity: \ xid2->mapped = 0; \ @@ -683,6 +690,7 @@ if (xid->children) \ } \ } \ } +#endif void e_window_resize(Window win, int w, int h)