illume2: Correct layer check value

The old code wanted all windows above layer 50 which has now shifted one
position down.

SVN revision: 77306
This commit is contained in:
Sebastian Dransfeld 2012-10-02 11:48:41 +00:00
parent 1b398f6a0c
commit b83598a504
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ _policy_border_hide_below(E_Border *bd)
if (pos > 5) pos = 5;
/* Find the windows below this one */
for (i = pos; i >= 2; i--)
for (i = pos; i >= 1; i--)
{
Eina_List *l;
E_Border *b;