From 9548f66509c460c754cb64922a7f787b439b3e30 Mon Sep 17 00:00:00 2001 From: "Mark A. Tsuchida" Date: Wed, 6 Sep 2023 15:38:56 -0500 Subject: [PATCH] Save AutoShutter state in saveSystemConfiguration --- MMCore/MMCore.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/MMCore/MMCore.cpp b/MMCore/MMCore.cpp index 426dc6ac4..6dd3823d9 100644 --- a/MMCore/MMCore.cpp +++ b/MMCore/MMCore.cpp @@ -6707,6 +6707,7 @@ void CMMCore::saveSystemConfiguration(const char* fileName) throw (CMMError) { os << MM::g_CFGCommand_Property << ',' << MM::g_Keyword_CoreDevice << ',' << MM::g_Keyword_CoreFocus << ',' << focus->GetLabel() << endl; } + os << MM::g_CFGCommand_Property << ',' << MM::g_Keyword_CoreDevice << ',' << MM::g_Keyword_CoreAutoShutter << ',' << (getAutoShutter() ? '1' : '0') << endl; } /**