Expose ShowHelp/ShowAbout in ApplicationController

This commit is contained in:
John Lewin 2018-09-27 16:59:42 -07:00
parent 6a60fd5ff8
commit d819cd0131
2 changed files with 18 additions and 8 deletions

View file

@ -103,13 +103,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
}
};
AddMenuItem("Help".Localize(), () =>
{
UiThread.RunOnIdle(() =>
{
DialogWindow.Show(new HelpPage("AllGuides"));
});
});
AddMenuItem("Help".Localize(), ApplicationController.Instance.ShowApplicationHelp);
this.AddSettingsRow(
new SettingsItem(
@ -337,7 +331,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
}
aboutMatterControl.Click += (s, e) =>
{
UiThread.RunOnIdle(() => DialogWindow.Show<AboutPage>());
ApplicationController.Instance.ShowAboutPage();
};
this.AddSettingsRow(aboutMatterControl);
}