Merge branch '1.7' into design_tools

# Conflicts:
#	SlicerConfiguration/Settings/SettingsHelpers.cs
#	StaticData/SliceSettings/Properties.json
#	StaticData/Translations/Master.txt
This commit is contained in:
Lars Brubaker 2017-04-12 12:29:31 -07:00
commit c0a7331579
12 changed files with 508 additions and 284 deletions

View file

@ -248,6 +248,13 @@ namespace MatterHackers.MatterControl.PrinterControls
}, ref unregisterEvents);
}
public override void OnLoad(EventArgs args)
{
// This is a hack to fix the layout issue this control is having.
Width = Width + 1;
base.OnLoad(args);
}
public override void OnClosed(ClosedEventArgs e)
{
unregisterEvents?.Invoke(this, null);