···130130pub fn nextItem(self: *ListView, ctx: *vxfw.EventContext) void {
131131 // If we have a count, we can handle this directly
132132 if (self.item_count) |count| {
133133- if (self.cursor >= count - 1) {
133133+ if (self.cursor >= count -| 1) {
134134 return ctx.consumeEvent();
135135 }
136136 self.cursor += 1;