fix shadow pos...

SVN revision: 12770
This commit is contained in:
Carsten Haitzler 2005-01-05 07:11:45 +00:00
parent 4bfa0c0ad7
commit a8fecbd451
1 changed files with 2 additions and 4 deletions

View File

@ -202,13 +202,11 @@ e_error_message_manager_show(E_Manager *man, char *title, char *txt)
{
E_Container *con;
E_Container_Shape *es;
int x, y, w, h;
con = l->data;
ecore_evas_geometry_get(ee, &x, &y, &w, &h);
es = e_container_shape_add(con);
e_container_shape_move(es, x, y);
e_container_shape_resize(es, w, h);
e_container_shape_move(es, (man->w - error_w) / 2, (man->h - error_h) / 2);
e_container_shape_resize(es, error_w, error_h);
e_container_shape_show(es);
shapelist = evas_list_append(shapelist, es);
}