as of e18 - we now are compositing only, which means we also don't

have to do a revers then forward paass in eval... which can cause ugly
things like reverse-evaluation :)
This commit is contained in:
Carsten Haitzler 2013-08-02 23:06:22 +09:00
parent 6d3751a620
commit 212cfda19b
1 changed files with 4 additions and 4 deletions

View File

@ -3295,8 +3295,8 @@ e_border_idler_before(void)
// pass 1 - eval0. fetch properties on new or on change and
// call hooks to decide what to do - maybe move/resize
bl = e_container_border_list_last(con);
while ((bd = e_container_border_list_prev(bl)))
bl = e_container_border_list_first(con);
while ((bd = e_container_border_list_next(bl)))
{
if (bd->changed) _e_border_eval0(bd);
}
@ -3307,8 +3307,8 @@ e_border_idler_before(void)
_e_border_container_layout_hook(con);
// pass 2 - show windows needing show
bl = e_container_border_list_last(con);
while ((bd = e_container_border_list_prev(bl)))
bl = e_container_border_list_first(con);
while ((bd = e_container_border_list_next(bl)))
{
if ((bd->changes.visible) && (bd->visible) &&
(!bd->new_client) && (!bd->changes.pos) &&