And fix quickpanel layer if we are not animating.

SVN revision: 44767
This commit is contained in:
Christopher Michael 2009-12-29 20:48:19 +00:00
parent 7beb5fbf59
commit a3b7ffe569
1 changed files with 8 additions and 2 deletions

View File

@ -79,7 +79,10 @@ e_quickpanel_show(E_Quickpanel *qp)
ny += bd->h;
EINA_LIST_FOREACH(qp->borders, l, bd)
e_border_fx_offset(bd, 0, ny);
{
e_border_lower(bd);
e_border_fx_offset(bd, 0, ny);
}
qp->visible = 1;
}
else
@ -309,7 +312,10 @@ _e_quickpanel_hide(E_Quickpanel *qp)
E_Border *bd;
EINA_LIST_FOREACH(qp->borders, l, bd)
e_border_fx_offset(bd, 0, 0);
{
e_border_lower(bd);
e_border_fx_offset(bd, 0, 0);
}
qp->visible = 0;
}
else