show the SettingsDialog with 'Application:Command Bars' group selected when selecting Tools->Customize

This commit is contained in:
Michael Becker 2020-09-25 17:39:47 -04:00
parent 4cb7b90ce3
commit 351b9a68b7
No known key found for this signature in database
GPG Key ID: 506F54899E2BFED7

View File

@ -594,6 +594,10 @@ namespace UniversalEditor.UserInterface
{
LastWindow.ShowOptionsDialog();
});
Application.AttachCommandEventHandler("ToolsCustomize", delegate (object sender, EventArgs e)
{
Application.ShowSettingsDialog(new string[] { "Application", "Command Bars" });
});
#endregion
#region Window
Application.AttachCommandEventHandler("WindowNewWindow", delegate(object sender, EventArgs e)