diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-10-25 16:24:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-25 16:24:32 -0400 |
commit | de074b9347b21ae0cd27afa5dfafac92707cf0d1 (patch) | |
tree | 6becd3422c2705199ae5e639020f32a9b9f334c9 /sway/input.c | |
parent | 47fd53812b7cf14734be96484e4e3719f196437f (diff) | |
parent | e8d8abfbb50a8992a0aa1a8c1e7fa99b8aae8248 (diff) |
Merge pull request #961 from t3hknr/master
Add left_handed support for input devices
Diffstat (limited to 'sway/input.c')
-rw-r--r-- | sway/input.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/input.c b/sway/input.c index ae24cb49..acd69a6b 100644 --- a/sway/input.c +++ b/sway/input.c @@ -24,6 +24,7 @@ struct input_config *new_input_config(const char* identifier) { input->accel_profile = INT_MIN; input->pointer_accel = FLT_MIN; input->scroll_method = INT_MIN; + input->left_handed = INT_MIN; return input; } |