Skip to content

Commit aad4d76

Browse files
authored
Fix crash when logging out during dialogue (#2752)
1 parent 5344dc9 commit aad4d76

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
@@ -1391,7 +1391,7 @@ private static void DisposeChildren(Base @this)
13911391
var children = @this._children.ToArray();
13921392
try
13931393
{
1394-
foreach (var child in @this._children)
1394+
foreach (var child in children)
13951395
{
13961396
child.Dispose();
13971397
}

0 commit comments

Comments
 (0)