Check for next_focus before assert

This commit is contained in:
Ivan Chebykin 2018-05-26 15:54:49 +03:00
parent 6e6b0decd9
commit 464ec44b00
No known key found for this signature in database
GPG Key ID: 34A8A768BB01746F
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,
if (!do_mouse_focus) {
struct sway_container *next_focus = seat_get_focus_inactive(
cursor->seat, p);
if(!sway_assert(next_focus->type == C_VIEW,
if(next_focus && !sway_assert(next_focus->type == C_VIEW,
"focus inactive container is not a view")) {
return;
}