From 11806a5abfc2d065679328fda3fd37d3f1099d95 Mon Sep 17 00:00:00 2001 From: LarsBrubaker Date: Sat, 30 Jan 2021 20:19:56 -0800 Subject: [PATCH] Keep settings window open on changing view details --- MatterControlLib/ApplicationView/ApplicationController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MatterControlLib/ApplicationView/ApplicationController.cs b/MatterControlLib/ApplicationView/ApplicationController.cs index d630d45a4..92d451ce3 100644 --- a/MatterControlLib/ApplicationView/ApplicationController.cs +++ b/MatterControlLib/ApplicationView/ApplicationController.cs @@ -393,6 +393,7 @@ namespace MatterHackers.MatterControl var printerTabPage = this.MainView.Descendants().Where(page => page.Printer == printer).FirstOrDefault(); if (printerTabPage != null) { + ApplicationController.Instance.IsReloading = true; var settingsContext = new SettingsContext( printer, null, @@ -413,6 +414,7 @@ namespace MatterHackers.MatterControl } sideBar.ReplacePage("Slice Settings", new SliceSettingsWidget(printer, settingsContext, Theme)); + ApplicationController.Instance.IsReloading = false; } }