Unify Vector2 3 and 4 to have upper case field members

This commit is contained in:
Lars Brubaker 2017-10-31 12:51:16 -07:00
parent 2de8368f6e
commit 359784877f
63 changed files with 351 additions and 351 deletions

View file

@ -199,7 +199,7 @@ namespace MatterHackers.MatterControl.CustomWidgets
printerName = new TextWidget(printer.Settings.GetValue(SettingsKey.printer_name), pointSize: 16, textColor: ActiveTheme.Instance.PrimaryTextColor)
{
HAnchor = HAnchor.Center,
MinimumSize = new Vector2(maxTextWidth, MinimumSize.y),
MinimumSize = new Vector2(maxTextWidth, MinimumSize.Y),
Width = maxTextWidth,
Margin = new BorderDouble(0, 3),
};
@ -209,7 +209,7 @@ namespace MatterHackers.MatterControl.CustomWidgets
partName = new TextWidget(printer.Bed.printItem.GetFriendlyName(), pointSize: 16, textColor: ActiveTheme.Instance.PrimaryTextColor)
{
HAnchor = HAnchor.Center,
MinimumSize = new Vector2(maxTextWidth, MinimumSize.y),
MinimumSize = new Vector2(maxTextWidth, MinimumSize.Y),
Width = maxTextWidth,
Margin = new BorderDouble(0, 3)
};