diff options
Diffstat (limited to 'sway/desktop/xwayland.c')
| -rw-r--r-- | sway/desktop/xwayland.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c index 1838ad32..080f6c41 100644 --- a/sway/desktop/xwayland.c +++ b/sway/desktop/xwayland.c @@ -470,7 +470,7 @@ static void handle_request_move(struct wl_listener *listener, void *data) {  		return;  	}  	struct sway_seat *seat = input_manager_current_seat(); -	seat_begin_move_floating(seat, view->container, seat->last_button); +	seatop_begin_move_floating(seat, view->container, seat->last_button);  }  static void handle_request_resize(struct wl_listener *listener, void *data) { @@ -486,7 +486,7 @@ static void handle_request_resize(struct wl_listener *listener, void *data) {  	}  	struct wlr_xwayland_resize_event *e = data;  	struct sway_seat *seat = input_manager_current_seat(); -	seat_begin_resize_floating(seat, view->container, +	seatop_begin_resize_floating(seat, view->container,  			seat->last_button, e->edges);  } | 
