We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following test fails:
[Fact] public void Margin_Should_Be_Applied_Before_Width_Height() { MeasureTest target; var outer = new Decorator { Width = 100, Height = 100, Child = target = new MeasureTest { Width = 80, Height = 80, Margin = new Thickness(10), } }; outer.Measure(Size.Infinity); Assert.Equal(new Size(80, 80), target.AvailableSize); }
The available size should be 80,80 but gets passed as 60,60. I suspect this is the problem @kekekeks is seeing in #984.
The text was updated successfully, but these errors were encountered:
Added failing test for #993.
15c3ef4
Apply margin before width/height.
16a47da
Fixes #993.
grokys
Successfully merging a pull request may close this issue.
The following test fails:
The available size should be 80,80 but gets passed as 60,60. I suspect this is the problem @kekekeks is seeing in #984.
The text was updated successfully, but these errors were encountered: