diff options
author | Brian Ashworth <RedSoxFan@users.noreply.github.com> | 2018-09-25 16:46:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-25 16:46:38 -0400 |
commit | c43374cdf043e913b48d3cdb31d0f716a2cf58bd (patch) | |
tree | 0bf04368b0f6972e343aa9eea64075d5fca5f102 /sway/input | |
parent | 08815f9cfb4d0e93d69997cb229333326212744b (diff) | |
parent | d129108cddc485299443d0b98c3bdf3f9839aa1c (diff) |
Merge pull request #2712 from alexbakker/fix-crash
Add a missing null check for moving tiling containers
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 5111e8e5..aa0e07f5 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -897,7 +897,7 @@ void dispatch_cursor_button(struct sway_cursor *cursor, // Handle moving a tiling container if (config->tiling_drag && mod_pressed && state == WLR_BUTTON_PRESSED && - !is_floating_or_child && !cont->is_fullscreen) { + !is_floating_or_child && cont && !cont->is_fullscreen) { seat_pointer_notify_button(seat, time_msec, button, state); seat_begin_move_tiling(seat, cont, button); return; |