Don't raise or focus a border if it's a "special" border.

SVN revision: 44218
This commit is contained in:
Christopher Michael 2009-12-06 16:29:56 +00:00
parent 3f55fcf7f4
commit 9989e6dddd
1 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,9 @@ static int panelsize = 0;
static void
_border_add(E_Border *bd)
{ // handle a border being added
if (illume_border_is_top_shelf(bd)) return;
else if (illume_border_is_bottom_panel(bd)) return;
else if (illume_border_is_keyboard(bd)) return;
e_border_raise(bd);
e_border_focus_set(bd, 1, 1);
}