aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xwayland.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-08-14 09:07:59 -0400
committerLibravatar GitHub <noreply@github.com>2018-08-14 09:07:59 -0400
commitb4887ba154ab0d659c560a21194c8ca43b953632 (patch)
treed1d693231ab91f1ef2fe98a437cc260daf755142 /sway/desktop/xwayland.c
parentMerge pull request #2454 from minus7/workspace-names (diff)
parentDon't commit multiple transactions at the same time (diff)
downloadsway-b4887ba154ab0d659c560a21194c8ca43b953632.tar.gz
sway-b4887ba154ab0d659c560a21194c8ca43b953632.tar.zst
sway-b4887ba154ab0d659c560a21194c8ca43b953632.zip
Merge pull request #2445 from RyanDwyer/resize-tiling-via-cursor
Implement resizing tiled containers via cursor
Diffstat (limited to 'sway/desktop/xwayland.c')
-rw-r--r--sway/desktop/xwayland.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 393185bd..5e8afa65 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -432,7 +432,7 @@ static void handle_request_resize(struct wl_listener *listener, void *data) {
432 } 432 }
433 struct wlr_xwayland_resize_event *e = data; 433 struct wlr_xwayland_resize_event *e = data;
434 struct sway_seat *seat = input_manager_current_seat(input_manager); 434 struct sway_seat *seat = input_manager_current_seat(input_manager);
435 seat_begin_resize(seat, view->swayc, seat->last_button, e->edges); 435 seat_begin_resize_floating(seat, view->swayc, seat->last_button, e->edges);
436} 436}
437 437
438static void handle_set_title(struct wl_listener *listener, void *data) { 438static void handle_set_title(struct wl_listener *listener, void *data) {