sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 464ec44b005aa7584c9240cb9721382d23d288cf
parent 6e6b0decd95eb3fd4b336817839c08a2c71c7505
Author: Ivan Chebykin <ivan@chebykin.org>
Date:   Sat, 26 May 2018 15:54:49 +0300

Check for next_focus before assert

Diffstat:
Msway/input/cursor.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/input/cursor.c b/sway/input/cursor.c @@ -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; }