add comment

git-svn-id: http://tint2.googlecode.com/svn/trunk@545 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
thilor77
2010-09-16 23:24:25 +00:00
parent 906ee82dbf
commit aabe6b11b9
14 changed files with 115 additions and 112 deletions

View File

@@ -301,7 +301,7 @@ void init_panel_size_and_position(Panel *panel)
}
void resize_panel(void *obj)
int resize_panel(void *obj)
{
Panel *panel = (Panel*)obj;
//printf("resize_panel : taskbar\n");
@@ -385,6 +385,7 @@ void resize_panel(void *obj)
posy += panel->taskbar[i].area.height + panel->area.paddingx;
}
}
return 0;
}
@@ -580,12 +581,14 @@ void set_panel_background(Panel *p)
}
// redraw panel's object
//p->area.redraw = 1;
GSList *l0;
Area *a;
for (l0 = p->area.list; l0 ; l0 = l0->next) {
a = l0->data;
set_redraw(a);
}
// reset task 'state_pix'
int i;
Taskbar *tskbar;