[WPF] DialogBackend method SetMinSize did not set Width

This commit is contained in:
David Karlaš 2013-05-05 13:10:01 +02:00
Родитель 929de68747
Коммит 8e2cfca65a
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -81,6 +81,7 @@ namespace Xwt.WPFBackend
separator.InvalidateMeasure ();
separator.Measure (new System.Windows.Size (double.PositiveInfinity, double.PositiveInfinity));
s.Height += buttonContainer.DesiredSize.Height + separator.DesiredSize.Height;
s.Width = System.Math.Max(buttonContainer.DesiredSize.Width, separator.DesiredSize.Width);
base.SetMinSize (s);
}