Skip to content

Commit

Permalink
Merge pull request #1950 from cwensley/curtis/fix-stacklayout-overflow
Browse files Browse the repository at this point in the history
Fix crash with StackLayout
  • Loading branch information
cwensley committed May 12, 2021
2 parents 4b4de9b + 38aa66f commit 0138edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eto/Forms/Layout/StackLayout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,8 @@ void Create()
throw new ArgumentOutOfRangeException();
}
Content = table;
ResumeLayout();
isCreated = true;
ResumeLayout();
}

internal override void InternalEnsureLayout()
Expand Down

0 comments on commit 0138edc

Please sign in to comment.