s/focused_view/active_view/

This commit is contained in:
Johan Malm 2023-12-19 17:45:11 +00:00 committed by Johan Malm
parent 447c67df62
commit 3a959cc74b
9 changed files with 28 additions and 24 deletions

View file

@ -173,7 +173,7 @@ desktop_cycle_view(struct server *server, struct view *start_view,
if (!start_view) {
start_view = first_view(server);
if (!start_view || start_view != server->focused_view) {
if (!start_view || start_view != server->active_view) {
return start_view; /* may be NULL */
}
}