Add Primary action highlighting to "Start Print" button

This commit is contained in:
John Lewin 2018-06-24 11:27:37 -07:00
parent 77fa60dac0
commit 56327e684d

View file

@ -141,7 +141,6 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
Name = "Start Print Button",
HAnchor = HAnchor.Right,
VAnchor = VAnchor.Absolute,
BackgroundColor = theme.MinimalShade
};
button.Click += (s, e) =>
{
@ -164,6 +163,8 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
};
column.AddChild(button);
theme.ApplyPrimaryActionStyle(button);
return column;
};