Skip to content

Commit 4d5d34d

Browse files
fix-2696 (#2727)
1 parent bff066a commit 4d5d34d

File tree

1 file changed

+1
-1
lines changed
  • Intersect.Client.Framework/Gwen/Control

1 file changed

+1
-1
lines changed

Intersect.Client.Framework/Gwen/Control/Base.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2310,7 +2310,7 @@ private static int IndexOf(Base @this, Func<Base?, bool> predicate)
23102310

23112311
private static int LastIndexOf(Base @this, Func<Base?, bool> predicate)
23122312
{
2313-
for (var index = @this._children.Count - 1; index >= 0; ++index)
2313+
for (var index = @this._children.Count - 1; index >= 0; --index)
23142314
{
23152315
if (predicate(@this._children[index]))
23162316
{

0 commit comments

Comments
 (0)