desktop: move scene-tree node in move-to-back

view_minimize() does not need to call desktop_move_to_back() because the
stacking order is not changed and the windowSwitcher uses the scene-tree
nodes anyway.

Note: Movement of xwayland sub-views still relies on keeping server->views
in sync with z-order
This commit is contained in:
Johan Malm 2023-03-25 16:38:43 +00:00 committed by Johan Malm
parent e45fe0804d
commit a6896e6978
7 changed files with 36 additions and 6 deletions

View file

@ -30,8 +30,10 @@ desktop_move_to_back(struct view *view)
if (!view) {
return;
}
wl_list_remove(&view->link);
wl_list_append(&view->server->views, &view->link);
if (view->impl->move_to_back) {
view->impl->move_to_back(view);
cursor_update_focus(view->server);
}
}
void