diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-29 08:00:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-29 08:00:20 -0400 |
commit | 24ab66d123ab493feb3c2343cbc9d93625b668d7 (patch) | |
tree | 66a34db1364899eeaca8521b3a35088f5ddd760d | |
parent | 950c451f30787d5a32cf941a19b0edb1201b3e4b (diff) | |
parent | 860d2384b434cd1576d9029f20db62b583895cf4 (diff) |
Merge pull request #1867 from emersion/wlroots-923
Update for wlroots#923
-rw-r--r-- | sway/input/cursor.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 944ad8eb..64b95e7d 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -1,4 +1,5 @@ #define _XOPEN_SOURCE 700 +#include <math.h> #ifdef __linux__ #include <linux/input-event-codes.h> #elif __FreeBSD__ @@ -262,18 +263,11 @@ static void handle_touch_motion(struct wl_listener *listener, void *data) { } static double apply_mapping_from_coord(double low, double high, double value) { - if (value == -1) { + if (isnan(value)) { return value; } - value = (value - low) / (high - low); - if (value < 0) { - return 0; - } else if (value > 1) { - return 1; - } else { - return value; - } + return (value - low) / (high - low); } static void apply_mapping_from_region(struct wlr_input_device *device, @@ -300,7 +294,7 @@ static void handle_tool_axis(struct wl_listener *listener, void *data) { struct wlr_event_tablet_tool_axis *event = data; struct sway_input_device *input_device = event->device->data; - double x = -1, y = -1; + double x = NAN, y = NAN; if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_X)) { x = event->x; } |