diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-07 11:19:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-07 11:19:25 -0400 |
commit | f5a9bd5cb75b37376b98eadbff2facb7e0021d57 (patch) | |
tree | f72219a5a2adec3380da5269fee025715f7bf333 /sway/input | |
parent | 2c9f0fb784f9781753679c8d1af3d8586c733f53 (diff) | |
parent | 93ca8919f63c7022779c9780a24478559e7e47af (diff) | |
download | sway-f5a9bd5cb75b37376b98eadbff2facb7e0021d57.tar.xz |
Merge pull request #1700 from swaywm/move-cmd-full
Implement move [left|right|up|down]
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/seat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c index ad3584a0..e8cf9824 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -5,6 +5,7 @@ #include <wlr/types/wlr_cursor.h> #include <wlr/types/wlr_output_layout.h> #include <wlr/types/wlr_xcursor_manager.h> +#include "sway/debug.h" #include "sway/tree/container.h" #include "sway/tree/workspace.h" #include "sway/input/seat.h" @@ -432,6 +433,8 @@ void seat_set_focus_warp(struct sway_seat *seat, } seat->has_focus = (container != NULL); + + update_debug_tree(); } void seat_set_focus(struct sway_seat *seat, |