Stacking is confusing, should be fixed

SVN revision: 16859
This commit is contained in:
sebastid 2005-09-23 00:47:35 +00:00 committed by sebastid
parent 811c5ac8e3
commit 1849a6ce39
1 changed files with 2 additions and 2 deletions

View File

@ -892,7 +892,7 @@ e_border_raise(E_Border *bd)
{
/* No border to raise above, same as a lower! */
ev->stack = NULL;
ev->type = E_STACKING_BELOW;
ev->type = E_STACKING_ABOVE;
}
}
@ -977,7 +977,7 @@ e_border_lower(E_Border *bd)
{
/* No border to hide under, same as a raise! */
ev->stack = NULL;
ev->type = E_STACKING_ABOVE;
ev->type = E_STACKING_BELOW;
}
}