Made library actually parse zips correctly (acted like they would open but did not use them).

Made the keyboard on android work correctly with the part preview window.
Some white space changes
This commit is contained in:
Lars Brubaker 2015-03-16 11:25:13 -07:00
parent 4f8c0742ce
commit 64cd6963de
4 changed files with 72 additions and 43 deletions

View file

@ -85,13 +85,13 @@ namespace MatterHackers.MatterControl.EeProm
{
ScrollableWidget settingsAreaScrollBox = new ScrollableWidget(true);
settingsAreaScrollBox.ScrollArea.HAnchor |= Agg.UI.HAnchor.ParentLeftRight;
settingsAreaScrollBox.ScrollArea.HAnchor |= HAnchor.ParentLeftRight;
settingsAreaScrollBox.AnchorAll();
settingsAreaScrollBox.BackgroundColor = ActiveTheme.Instance.SecondaryBackgroundColor;
topToBottom.AddChild(settingsAreaScrollBox);
settingsColmun = new FlowLayoutWidget(FlowDirection.TopToBottom);
settingsColmun.HAnchor = Agg.UI.HAnchor.Max_FitToChildren_ParentWidth;
settingsColmun.HAnchor = HAnchor.Max_FitToChildren_ParentWidth;
settingsAreaScrollBox.AddChild(settingsColmun);
}