sway

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

commit 7cfa1507881144445efd9752e18219dd5ec4a14b
parent c85d9af2b6ee0478ffc21f3970280c5be6d9b925
Author: Michael Weiser <michael.weiser@gmx.de>
Date:   Sat, 25 Jan 2020 19:27:03 +0100

config: Remove unused mouse binding structure

Mouse bindings are handled alongside normal bindings. Remove the unused
separate data structure definition to avoid confusion.

Signed-off-by: Michael Weiser <michael.weiser@gmx.de>

Diffstat:
Minclude/sway/config.h | 10+---------
1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/include/sway/config.h b/include/sway/config.h @@ -48,7 +48,7 @@ enum binding_flags { }; /** - * A key binding and an associated command. + * A key (or mouse) binding and an associated command. */ struct sway_binding { enum binding_input_type type; @@ -62,14 +62,6 @@ struct sway_binding { char *command; }; -/** - * A mouse binding and an associated command. - */ -struct sway_mouse_binding { - uint32_t button; - char *command; -}; - enum sway_switch_trigger { SWAY_SWITCH_TRIGGER_OFF, SWAY_SWITCH_TRIGGER_ON,