Skip to content

Commit

Permalink
Merge pull request #401 from npes87184/dev
Browse files Browse the repository at this point in the history
input_manager: don't ignore double click event when clicking inside device
  • Loading branch information
rom1v authored Jan 18, 2019
2 parents 1fdde49 + c5ec1a1 commit b343a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/input_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,8 @@ void input_manager_process_mouse_button(struct input_manager *input_manager,
event->y);
if (outside) {
screen_resize_to_fit(input_manager->screen);
return;
}
return;
}
// otherwise, send the click event to the device
}
Expand Down

0 comments on commit b343a5d

Please sign in to comment.