From d4751c04a17177d32ef6376c712a126e539aa930 Mon Sep 17 00:00:00 2001 From: rowan Date: Wed, 11 Jun 2025 01:31:50 -0400 Subject: [PATCH] remove prints --- godot/src/h_item_list.gd | 2 -- 1 file changed, 2 deletions(-) diff --git a/godot/src/h_item_list.gd b/godot/src/h_item_list.gd index 72dcaf2..1aee577 100644 --- a/godot/src/h_item_list.gd +++ b/godot/src/h_item_list.gd @@ -40,10 +40,8 @@ func _on_updated(_current_range: IntRange, _previous_range: IntRange): func _update_display(): var indices: Array = ring_buffer.range().collect() - prints(indices, ring_buffer.start_index, ring_buffer.end_index, ring_buffer.capacity) for i in range(min(indices.size(), max_items)): var node = get_child(i) - prints(ring_buffer.index(i)) var item = items[indices[i]] if item != null: bind_item.call(node, item)