This commit is contained in:
Alex Z 2020-03-10 01:12:45 +03:00
parent e15ec3ddc9
commit c016a1e618

View File

@ -376,13 +376,13 @@ namespace UniversalValveToolbox {
else if (selectItemText == Properties.translations.MenuItems.itmEditConfigurations) { else if (selectItemText == Properties.translations.MenuItems.itmEditConfigurations) {
var frmProfiles = new FormProjects(); var frmProfiles = new FormProjects();
if (frmProfiles.ShowDialog() == DialogResult.OK) { if (frmProfiles.ShowDialog() == DialogResult.OK) {
Application.Restart(); UpdateFormData();
} }
} }
else if (selectItemText == Properties.translations.MenuItems.itmEditPlugins) { else if (selectItemText == Properties.translations.MenuItems.itmEditPlugins) {
var frmPlugins = new FormAddons(); var frmPlugins = new FormAddons();
if (frmPlugins.ShowDialog() == DialogResult.OK) { if (frmPlugins.ShowDialog() == DialogResult.OK) {
Application.Restart(); UpdateFormData();
} }
} }
else if (selectItemText == Properties.translations.MenuItems.itmAbout) { else if (selectItemText == Properties.translations.MenuItems.itmAbout) {