WM menu in left and right padding

git-svn-id: http://tint2.googlecode.com/svn/trunk@19 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
lorthiois@bbsoft.fr
2008-11-12 15:11:39 +00:00
parent b1c239db22
commit 9707ec36d2
9 changed files with 71 additions and 35 deletions

View File

@@ -70,11 +70,9 @@ int draw (Area *a)
XCopyArea (server.dsp, a->pmap, server.pmap, server.gc, 0, 0, a->width, a->height, a->posx, a->posy);
GSList *l = a->list;
if (l) {
// draw child object
for (; l ; l = l->next)
draw(l->data);
}
// draw child object
for (; l ; l = l->next)
draw(l->data);
//printf("end draw area\n");
return ret;