diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-12-17 19:05:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-17 19:05:33 -0500 |
commit | e726b5c4458a88a3bd8880dca150f2de5c266a22 (patch) | |
tree | 3f06df32826d9c7edd7ca446a87169a33ca11786 /sway/input | |
parent | 0d741782c4451e0cde5ab0b4fa09470000d1ca57 (diff) | |
parent | 0ea54833d4f799363e73526e4e82e257360cbc06 (diff) |
Merge pull request #3308 from RedSoxFan/fix-titlebar-click
Focus node before tiling drag if on titlebar
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/cursor.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 0349fa7c..ad9b9835 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -945,6 +945,10 @@ void dispatch_cursor_button(struct sway_cursor *cursor, if (config->tiling_drag && (mod_pressed || on_titlebar) && state == WLR_BUTTON_PRESSED && !is_floating_or_child && cont && !cont->is_fullscreen) { + if (on_titlebar) { + node = seat_get_focus_inactive(seat, &cont->node); + seat_set_focus(seat, node); + } seat_pointer_notify_button(seat, time_msec, button, state); seat_begin_move_tiling(seat, cont, button); return; |