mirror of
https://github.com/swaywm/sway.git
synced 2025-11-26 06:59:59 -05:00
Implement resizing tiled containers via cursor
* The OP_RESIZE seat operation has been renamed to OP_RESIZE_FLOATING, and OP_RESIZE_TILING has been introduced. * Similar to the above, seat_begin_resize and handle_resize_motion have been renamed and tiling variants introduced. * resize.c's resize_tiled has to be used, so container_resize_tiled has been introduced in resize.c to allow external code to call it.
This commit is contained in:
parent
146cc0a441
commit
b4a0363d17
10 changed files with 173 additions and 34 deletions
|
|
@ -331,7 +331,8 @@ static void handle_request_resize(struct wl_listener *listener, void *data) {
|
|||
struct wlr_xdg_toplevel_resize_event *e = data;
|
||||
struct sway_seat *seat = e->seat->seat->data;
|
||||
if (e->serial == seat->last_button_serial) {
|
||||
seat_begin_resize(seat, view->swayc, seat->last_button, e->edges);
|
||||
seat_begin_resize_floating(seat, view->swayc,
|
||||
seat->last_button, e->edges);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue