Spelling correction.

This commit is contained in:
Kevin Pope 2014-10-17 19:17:10 -07:00
parent cbe97d4513
commit 6646db683f
3 changed files with 4 additions and 4 deletions

View file

@ -110,7 +110,7 @@ namespace MatterHackers.MatterControl
ActiveTheme.Instance.SecondaryAccentColor, new RGBA_Bytes(), unselectedTextColor, new RGBA_Bytes()));
GuiWidget manualPrinterControls = new ManualControlsWidget();
GuiWidget manualPrinterControls = new ManualPrinterControls();
part3DViewContainer = new GuiWidget();
part3DViewContainer.AnchorAll();
@ -191,7 +191,7 @@ namespace MatterHackers.MatterControl
void reloadControlsWidget()
{
GuiWidget manualPrinterControls = new ManualControlsWidget();
GuiWidget manualPrinterControls = new ManualPrinterControls();
//ScrollableWidget manualPrinterControlsWidget = new ScrollableWidget(true);
//manualPrinterControlsWidget.ScrollArea.HAnchor |= Agg.UI.HAnchor.ParentLeftRight;

View file

@ -40,7 +40,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
{
public partial class View3DWidget
{
private void AutoArangePartsInBackground()
private void AutoArrangePartsInBackground()
{
if (MeshGroups.Count > 0)
{

View file

@ -966,7 +966,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
autoArrangeButton.Visible = false;
autoArrangeButton.Click += (sender, e) =>
{
AutoArangePartsInBackground();
AutoArrangePartsInBackground();
};
GuiWidget verticalSpacer = new GuiWidget();