There was a bug that the window's position was wrong if a window called
ecore_wl2_window_position_set after calling ecore_wl2_window_hide.
In this case, the display server didn't get an information about new position
because the tizen_position was destroyed. When the window was shown again, the
display server sent configure event using old position not new position.
By this, window moved to wrong(old) position.
This patch resolve this problem.
@tizen_only
Change-Id: I28b377ca5fd77106a69f442e4300feb891236d84
if (window->tz_visibility) tizen_visibility_destroy(window->tz_visibility);
window->tz_visibility = NULL;
- if (window->tz_position) tizen_position_destroy(window->tz_position);
- window->tz_position = NULL;
-
if (window->tz_resource) tizen_resource_destroy(window->tz_resource);
window->tz_resource = NULL;
//