river: fix names of input config settings

This commit is contained in:
Leon Henrik Plickat 2024-02-15 11:41:43 +01:00
parent 0cae415a93
commit 653b5c6660

View File

@ -264,16 +264,17 @@ pub const ScrollButton = struct {
identifier: []const u8, identifier: []const u8,
@"event-state": ?EventState = null, // Note: Field names equal name of the setting in the 'input' command.
events: ?EventState = null,
@"accel-profile": ?AccelProfile = null, @"accel-profile": ?AccelProfile = null,
@"click-method": ?ClickMethod = null, @"click-method": ?ClickMethod = null,
@"drag-state": ?DragState = null, drag: ?DragState = null,
@"drag-lock": ?DragLock = null, @"drag-lock": ?DragLock = null,
@"dwt-state": ?DwtState = null, @"disable-while-typing": ?DwtState = null,
@"middle-emulation": ?MiddleEmulation = null, @"middle-emulation": ?MiddleEmulation = null,
@"natural-scroll": ?NaturalScroll = null, @"natural-scroll": ?NaturalScroll = null,
@"left-handed": ?LeftHanded = null, @"left-handed": ?LeftHanded = null,
@"tap-state": ?TapState = null, tap: ?TapState = null,
@"tap-button-map": ?TapButtonMap = null, @"tap-button-map": ?TapButtonMap = null,
@"pointer-accel": ?PointerAccel = null, @"pointer-accel": ?PointerAccel = null,
@"scroll-method": ?ScrollMethod = null, @"scroll-method": ?ScrollMethod = null,