mirror of
https://github.com/swaywm/sway.git
synced 2024-11-23 08:21:28 +00:00
Check for next_focus before assert
This commit is contained in:
parent
6e6b0decd9
commit
464ec44b00
|
@ -183,7 +183,7 @@ void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time_msec,
|
||||||
if (!do_mouse_focus) {
|
if (!do_mouse_focus) {
|
||||||
struct sway_container *next_focus = seat_get_focus_inactive(
|
struct sway_container *next_focus = seat_get_focus_inactive(
|
||||||
cursor->seat, p);
|
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")) {
|
"focus inactive container is not a view")) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue