Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
batzen committed Apr 13, 2020
1 parent 54d1869 commit d321b98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fluent.Ribbon/Controls/RibbonGroupBoxWrapPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ protected override Size MeasureOverride(Size constraint)
panelSize.V += curLineSize.V;
curLineSize = sz;

if (DoubleUtil.GreaterThan(sz.U, uvConstraint.U)) //the element is wider then the constrint - give it a separate line
if (DoubleUtil.GreaterThan(sz.U, uvConstraint.U)) //the element is wider then the constraint - give it a separate line
{
panelSize.U = Math.Max(sz.U, panelSize.U);
panelSize.V += sz.V;
Expand Down

0 comments on commit d321b98

Please sign in to comment.