Address fixme for show/hide indicator window.

SVN revision: 45923
This commit is contained in:
Christopher Michael 2010-02-06 01:10:10 +00:00
parent f6c8bb2a30
commit f82a3fb67e
1 changed files with 6 additions and 2 deletions

View File

@ -71,17 +71,21 @@ _layout_border_focus_out(E_Border *bd)
void void
_layout_border_activate(E_Border *bd) _layout_border_activate(E_Border *bd)
{ {
E_Border *b;
/* HANDLE A BORDER BEING ACTIVATED */ /* HANDLE A BORDER BEING ACTIVATED */
if ((!bd) || (bd->stolen)) return; if ((!bd) || (bd->stolen)) return;
if (e_illume_border_is_conformant(bd)) if (e_illume_border_is_conformant(bd))
{ {
// FIXME: hide bottom panel b = e_illume_border_top_shelf_get(bd->zone);
if (b) e_border_hide(b, 2);
} }
else else
{ {
// FIXME: show bottom panel b = e_illume_border_top_shelf_get(bd->zone);
if (b) e_border_show(b);
} }
/* only set focus if border accepts it and it's not locked out */ /* only set focus if border accepts it and it's not locked out */