Check for next_focus before assert

master
Ivan Chebykin 7 years ago
parent 6e6b0decd9
commit 464ec44b00
No known key found for this signature in database
GPG Key ID: 34A8A768BB01746F

@ -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;
}

Loading…
Cancel
Save