sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit a6c5628fa7d4d22c28397c9ff7cba1844e2db1a7
parent 5912be46c32fefbbcdb895a81c817ed1579887ed
Author: Ian Fan <ianfan0@gmail.com>
Date:   Thu, 27 Sep 2018 09:25:32 +0100

input config: merge left_handed option

Diffstat:
Msway/config/input.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/sway/config/input.c b/sway/config/input.c @@ -52,6 +52,9 @@ void merge_input_config(struct input_config *dst, struct input_config *src) { if (src->dwt != INT_MIN) { dst->dwt = src->dwt; } + if (src->left_handed != INT_MIN) { + dst->left_handed = src->left_handed; + } if (src->middle_emulation != INT_MIN) { dst->middle_emulation = src->middle_emulation; }