Make standard button factory member names more generic

This commit is contained in:
John Lewin 2017-08-01 08:25:42 -07:00
parent 183b82d138
commit d6a97052bf
10 changed files with 17 additions and 17 deletions

View file

@ -47,7 +47,7 @@ namespace MatterHackers.MatterControl
}
else
{
this.AddChild(new PrinterConnectButton(ApplicationController.Instance.Theme.BreadCrumbButtonFactory));
this.AddChild(new PrinterConnectButton(ApplicationController.Instance.Theme.ButtonFactory));
this.AddChild(new PrintStatusRow());
}

View file

@ -131,7 +131,7 @@ namespace MatterHackers.MatterControl.ActionBar
FlowLayoutWidget printStatusContainer = CreateActivePrinterInfoWidget();
var printActionRow = new PrintActionRow(ApplicationController.Instance.Theme.BreadCrumbButtonFactory, this, new BorderDouble(6, 6, 6, 3))
var printActionRow = new PrintActionRow(ApplicationController.Instance.Theme.ButtonFactory, this, new BorderDouble(6, 6, 6, 3))
{
VAnchor = VAnchor.ParentTop
};