Rename OP_MOVE to OP_MOVE_FLOATING

In preparation for introducing OP_MOVE_TILING.
This commit is contained in:
Ryan Dwyer 2018-09-11 16:56:05 +10:00
parent 822b45f483
commit d4e80cf301
6 changed files with 14 additions and 14 deletions

View file

@ -333,7 +333,7 @@ static void handle_request_move(struct wl_listener *listener, void *data) {
struct wlr_xdg_toplevel_move_event *e = data;
struct sway_seat *seat = e->seat->seat->data;
if (e->serial == seat->last_button_serial) {
seat_begin_move(seat, view->container, seat->last_button);
seat_begin_move_floating(seat, view->container, seat->last_button);
}
}