From 0ea54833d4f799363e73526e4e82e257360cbc06 Mon Sep 17 00:00:00 2001 From: Brian Ashworth Date: Mon, 17 Dec 2018 16:51:12 -0500 Subject: [PATCH] Focus node before tiling drag if on titlebar Before attempting to drag a tiling container by its titlebar, focus it. This fixes clicking on titlebars to focus a container. --- sway/input/cursor.c | 4 ++++ 1 file changed, 4 insertions(+) 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;