We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 009ad84 commit 8af33bdCopy full SHA for 8af33bd
1 file changed
demo/src/main.zig
@@ -93,7 +93,6 @@ fn eventFn(data: ?*anyopaque, event: wio.Event) void {
93
.touch_end => |touch| std.log.info("touch {}: {s}", .{ touch.id, if (touch.ignore) "ignore" else "end" }),
94
.gesture_hold => |gesture| std.log.info("{s} ({} fingers)", .{ @tagName(event), gesture.fingers }),
95
.gesture_pan_x, .gesture_pan_y, .gesture_scale, .gesture_rotate => |gesture| std.log.info("{s} ({} fingers) {}", .{ @tagName(event), gesture.fingers, gesture.value }),
96
- .gesture_end => |gesture_end| std.log.info("gesture_end{s}", .{if (gesture_end.ignore) " (ignore)" else ""}),
97
.drop_position => |pos| std.log.info("drop_position ({},{})", .{ pos.x, pos.y }),
98
else => std.log.info("{s}", .{@tagName(event)}),
99
}
0 commit comments