diff options
author | emersion <contact@emersion.fr> | 2018-07-24 12:10:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 12:10:08 +0100 |
commit | 354731f1616ec76385d3472bd0bf188f5a350796 (patch) | |
tree | 0ad866d4449bb374eedd624aaacdd8bebba0e4d6 /sway | |
parent | 1a9179dbab91490c4a8dc45f8630ac139c96efe6 (diff) | |
parent | e7c10f1871ba64c234ff1df22828ca84ad28c67e (diff) |
Merge pull request #2344 from RyanDwyer/mod-resize-any-direction
Make mod+resize work in any direction
Diffstat (limited to 'sway')
-rw-r--r-- | sway/input/cursor.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index f1481936..8a6299cf 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -460,6 +460,12 @@ static void dispatch_cursor_button_floating(struct sway_cursor *cursor, bool resizing_via_mod = button == BTN_RIGHT && mod_pressed; if ((resizing_via_border || resizing_via_mod) && state == WLR_BUTTON_PRESSED) { + if (edge == WLR_EDGE_NONE) { + edge |= cursor->cursor->x > cont->x + cont->width / 2 ? + WLR_EDGE_RIGHT : WLR_EDGE_LEFT; + edge |= cursor->cursor->y > cont->y + cont->height / 2 ? + WLR_EDGE_BOTTOM : WLR_EDGE_TOP; + } seat_begin_resize(seat, cont, button, edge); return; } |