aboutsummaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Ferdinand Schober <ferdinand.schober@fau.de>2022-09-22 10:41:45 +0200
committerLibravatar Simon Ser <contact@emersion.fr>2022-10-09 10:07:51 +0200
commite2bb5799af77d2b6169a66fcb942c16b08078e93 (patch)
treee73c50560ed9dfafcbbb92c984db37b2bb07d527 /sway
parentallow pointer_constraints on layer_shell surfaces (diff)
downloadsway-e2bb5799af77d2b6169a66fcb942c16b08078e93.tar.gz
sway-e2bb5799af77d2b6169a66fcb942c16b08078e93.tar.zst
sway-e2bb5799af77d2b6169a66fcb942c16b08078e93.zip
check for NULL
Diffstat (limited to 'sway')
-rw-r--r--sway/input/cursor.c2
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) {
1373 wl_signal_add(&constraint->events.destroy, &sway_constraint->destroy); 1373 wl_signal_add(&constraint->events.destroy, &sway_constraint->destroy);
1374 1374
1375 struct wlr_surface *surface = seat_get_focused_surface(seat); 1375 struct wlr_surface *surface = seat_get_focused_surface(seat);
1376 if (surface == constraint->surface) { 1376 if (surface && surface == constraint->surface) {
1377 sway_cursor_constrain(seat->cursor, constraint); 1377 sway_cursor_constrain(seat->cursor, constraint);
1378 } 1378 }
1379} 1379}