fix that quickly...

SVN revision: 4459
This commit is contained in:
Carsten Haitzler 2001-03-27 18:52:09 +00:00
parent cc0a40986a
commit 1e0b199ff3
1 changed files with 9 additions and 1 deletions

View File

@ -624,6 +624,7 @@ e_window_move(Window win, int x, int y)
} }
xid->x = x; xid->x = x;
xid->y = y; xid->y = y;
xid->coords_invalid = 0;
XMoveWindow(disp, win, x, y); XMoveWindow(disp, win, x, y);
} }
} }
@ -640,7 +641,13 @@ if (xid->children) \
xid2 = e_validate_xid(xid->children[j]); \ xid2 = e_validate_xid(xid->children[j]); \
if (xid2) \ if (xid2) \
{ \ { \
switch (xid2->gravity) \ xid2->coords_invalid = 1; \
} \
} \
}
#if 0
switch (xid2->gravity) \
{ \ { \
case UnmapGravity: \ case UnmapGravity: \
xid2->mapped = 0; \ xid2->mapped = 0; \
@ -683,6 +690,7 @@ if (xid->children) \
} \ } \
} \ } \
} }
#endif
void void
e_window_resize(Window win, int w, int h) e_window_resize(Window win, int w, int h)