There was a bug that the e_zone_visibility_calculate() returns EINA_TRUE even though
the visibility of windows was not changed at all.
So, we modified code to return EINA_TRUE only when there is a change of the window's
visibility.
Change-Id: I0b4585aefb36879dd33e1321a0fdcae7195d89e1
}
}
- ec->visibility.changed = 0;
- e_visibility_changed = EINA_TRUE;
+ if (ec->visibility.changed)
+ {
+ ec->visibility.changed = 0;
+ e_visibility_changed = EINA_TRUE;
+ }
}
changed_list = eina_list_free(changed_list);