Remove properties.json, eliminate remaining dependencies

This commit is contained in:
John Lewin 2019-01-11 13:15:36 -08:00
parent 956c1b7327
commit a26a474ab4
4 changed files with 8 additions and 20 deletions

View file

@ -129,12 +129,12 @@ namespace MatterHackers.MatterControl.PrintLibrary
var menu = new PopupMenu(ApplicationController.Instance.MenuTheme);
var openMenuItem = menu.CreateMenuItem("Open".Localize());
openMenuItem.Click += (s2, e2) =>
openMenuItem.Click += async (s2, e2) =>
{
if (treeView?.SelectedNode.Tag is PrinterInfo printerInfo)
{
// Open printer
ApplicationController.Instance.OpenEmptyPrinter(printerInfo.ID).ConfigureAwait(false);
await ApplicationController.Instance.OpenEmptyPrinter(printerInfo.ID);
}
};