Fix collapsed, incorrectly sized, menu content

This commit is contained in:
John Lewin 2017-11-15 16:13:59 -08:00
parent 7c8de48d88
commit c3f1dbf801

View file

@ -108,13 +108,13 @@ namespace MatterHackers.MatterControl
public BrandMenuButton(ThemeConfig theme)
{
this.Name = "MatterControl BrandMenuButton";
this.VAnchor = VAnchor.Stretch;
this.VAnchor = VAnchor.Fit;
this.HAnchor = HAnchor.Stretch;
this.Margin = 0;
this.PopupContent = new ApplicationSettingsWidget(theme.MenuButtonFactory)
{
HAnchor = HAnchor.Absolute,
VAnchor = VAnchor.Center,
VAnchor = VAnchor.Fit,
Width = 500,
BackgroundColor = Color.White
};