shell.c: Set dirty for visible views on destroyed output

The geometry for visible views will keep unchanged,
weston_view_set_position() doesn't mark these views
as dirty. So there is no chance for them to reassign output, then
these views will disappear.

Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=72946

Signed-off-by: Xiong Zhang <xiong.y.zhang@intel.com>
This commit is contained in:
Xiong Zhang 2014-03-07 16:27:19 +08:00 committed by Kristian Høgsberg
parent 9a14b8f4fa
commit 62899f5124

View file

@ -5810,9 +5810,12 @@ shell_reposition_view_on_output_destroy(struct weston_view *view)
x = first_output->x + first_output->width / 4;
y = first_output->y + first_output->height / 4;
weston_view_set_position(view, x, y);
} else {
weston_view_geometry_dirty(view);
}
weston_view_set_position(view, x, y);
shsurf = get_shell_surface(view->surface);