Sync up variable names with type changes

This commit is contained in:
John Lewin 2017-10-15 15:50:48 -07:00
parent f5f32fb53e
commit 773354766a
5 changed files with 16 additions and 17 deletions

View file

@ -54,7 +54,7 @@ namespace MatterHackers.MatterControl.PrintLibrary
private GuiWidget providerMessageContainer;
private TextWidget providerMessageWidget;
private OverflowMenu overflowDropdown;
private OverflowMenu overflowMenu;
//private DropDownMenu actionMenu;
private List<PrintItemAction> menuActions = new List<PrintItemAction>();
@ -156,13 +156,13 @@ namespace MatterHackers.MatterControl.PrintLibrary
};
navBar.AddChild(searchButton);
overflowDropdown = new OverflowMenu(IconColor.Theme)
overflowMenu = new OverflowMenu(IconColor.Theme)
{
VAnchor = VAnchor.Center,
AlignToRightEdge = true,
Name = "Print Library Overflow Menu",
};
navBar.AddChild(overflowDropdown);
navBar.AddChild(overflowMenu);
allControls.AddChild(libraryView);
@ -844,7 +844,7 @@ namespace MatterHackers.MatterControl.PrintLibrary
EnableMenus();
overflowDropdown.PopupContent = popupContainer;
overflowMenu.PopupContent = popupContainer;
base.OnLoad(args);
}