Skip to content

Commit 8af33bd

Browse files
committed
demo: remove gesture_end
1 parent 009ad84 commit 8af33bd

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

demo/src/main.zig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ fn eventFn(data: ?*anyopaque, event: wio.Event) void {
9393
.touch_end => |touch| std.log.info("touch {}: {s}", .{ touch.id, if (touch.ignore) "ignore" else "end" }),
9494
.gesture_hold => |gesture| std.log.info("{s} ({} fingers)", .{ @tagName(event), gesture.fingers }),
9595
.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 ""}),
9796
.drop_position => |pos| std.log.info("drop_position ({},{})", .{ pos.x, pos.y }),
9897
else => std.log.info("{s}", .{@tagName(event)}),
9998
}

0 commit comments

Comments
 (0)