We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8639dba commit 3521083Copy full SHA for 3521083
UI++Editor/Models/ActionClasses/ActionGroup.cs
@@ -65,7 +65,7 @@ public void AddChild(IElement element)
65
public void AddChild(IElement element, int index)
66
{
67
element.Parent = this;
68
- Children.Insert(index + 1, element);
+ Children.Insert(index, element);
69
NotifyOfPropertyChange(() => Children);
70
}
71
0 commit comments