desktop: rename functions to increase consistency

...from
- desktop_raise_view()
- desktop_move_view_to_end_of_cycle()

to
- desktop_move_to_front()
- desktop_move_to_back()
This commit is contained in:
Johan Malm 2021-12-06 21:23:49 +00:00
parent 9b99ff9042
commit 238062a859
8 changed files with 29 additions and 26 deletions

View file

@ -96,7 +96,7 @@ action(struct view *activator, struct server *server, const char *action, const
} else if (!strcasecmp(action, "Raise")) {
struct view *view = activator_or_focused_view(activator, server);
if (view) {
desktop_raise_view(view);
desktop_move_to_front(view);
damage_all_outputs(server);
}
} else if (!strcasecmp(action, "Resize")) {