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]))
{