Skip to content

Commit

Permalink
Always arrange row/col presenters to final size.
Browse files Browse the repository at this point in the history
Even when they have no items - otherwise star columns will not be sized correctly, resulting in #209.

Fixes #209.
  • Loading branch information
grokys committed Sep 1, 2023
1 parent 4ec3e20 commit 1ac8873
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ protected override Size MeasureOverride(Size availableSize)
protected override Size ArrangeOverride(Size finalSize)
{
if (_realizedElements is null)
return default;
return finalSize;

_isInLayout = true;

Expand Down

0 comments on commit 1ac8873

Please sign in to comment.