diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2018-12-16 13:27:45 +0000 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-12-16 15:04:06 +0100 |
commit | 1442d4e6881e06c9a43c985e6b890cfe77e13adf (patch) | |
tree | 976cdd267caae84e911992dc2d9cadc9817ed29e /sway/input | |
parent | c8284176dbc74acbf113c2d026124bf87cf8d5d3 (diff) |
Update for swaywm/wlroots#1377
-Werror is eͫ̐ͭ҉vi͆ͦ̏ͦlͥ̀͒̊͂͛
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/seat.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c index f4098eb0..776d5766 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -392,6 +392,7 @@ static void seat_update_capabilities(struct sway_seat *seat) { caps |= WL_SEAT_CAPABILITY_POINTER; break; case WLR_INPUT_DEVICE_TABLET_PAD: + case WLR_INPUT_DEVICE_SWITCH: break; } } @@ -513,6 +514,9 @@ void seat_configure_device(struct sway_seat *seat, case WLR_INPUT_DEVICE_TABLET_PAD: wlr_log(WLR_DEBUG, "TODO: configure tablet pad"); break; + case WLR_INPUT_DEVICE_SWITCH: + wlr_log(WLR_DEBUG, "TODO: configure switch device"); + break; } } |