From 20117262cb202e5af4a8a25166c6945f420f43d9 Mon Sep 17 00:00:00 2001 From: WeylonSantana Date: Mon, 12 May 2025 18:12:49 -0300 Subject: [PATCH] fix-2696 --- Intersect.Client.Framework/Gwen/Control/Base.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Intersect.Client.Framework/Gwen/Control/Base.cs b/Intersect.Client.Framework/Gwen/Control/Base.cs index 606782f476..c0920f9849 100644 --- a/Intersect.Client.Framework/Gwen/Control/Base.cs +++ b/Intersect.Client.Framework/Gwen/Control/Base.cs @@ -2310,7 +2310,7 @@ private static int IndexOf(Base @this, Func predicate) private static int LastIndexOf(Base @this, Func predicate) { - for (var index = @this._children.Count - 1; index >= 0; ++index) + for (var index = @this._children.Count - 1; index >= 0; --index) { if (predicate(@this._children[index])) {