diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-09-22 10:41:45 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-09-22 10:41:45 +0200 |
| commit | 072160a3deb136f485eabfc75fd38a712673992b (patch) | |
| tree | e73c50560ed9dfafcbbb92c984db37b2bb07d527 | |
| parent | 57e5b3d53533366c78b452eb2ac6c03cd154f6d6 (diff) | |
check for NULL
| -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 78a221d8..bf9c9b6b 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -1373,7 +1373,7 @@ void handle_pointer_constraint(struct wl_listener *listener, void *data) { wl_signal_add(&constraint->events.destroy, &sway_constraint->destroy); struct wlr_surface *surface = seat_get_focused_surface(seat); - if (surface == constraint->surface) { + if (surface && surface == constraint->surface) { sway_cursor_constrain(seat->cursor, constraint); } } |
