illume2: Correct layer check value
authorSebastian Dransfeld <sd@tango.flipp.net>
Tue, 2 Oct 2012 11:48:41 +0000 (11:48 +0000)
committerSebastian Dransfeld <sd@tango.flipp.net>
Tue, 2 Oct 2012 11:48:41 +0000 (11:48 +0000)
The old code wanted all windows above layer 50 which has now shifted one
position down.

SVN revision: 77306

src/modules/illume2/policies/tablet/policy.c

index 9cfeb0e..400b1ca 100644 (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;