cursor: remove unused node assignement

The node variable is not used before its reassigned later in the function,
remove the assignement.
This commit is contained in:
Rouven Czerwinski 2019-02-26 20:21:33 +01:00 committed by Brian Ashworth
parent efe370ba12
commit 35d610a43c
1 changed files with 1 additions and 1 deletions

View File

@ -431,7 +431,7 @@ static void handle_cursor_motion(struct wl_listener *listener, void *data) {
struct sway_node *node = NULL;
double sx, sy;
if (cursor->active_constraint) {
node = node_at_coords(cursor->seat,
node_at_coords(cursor->seat,
cursor->cursor->x, cursor->cursor->y, &surface, &sx, &sy);
if (cursor->active_constraint->surface != surface) {