aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio
diff options
context:
space:
mode:
authorRoy <Roy.mail.net@gmail.com>2023-05-07 14:16:32 +0300
committerRoy <Roy.mail.net@gmail.com>2023-05-07 14:16:32 +0300
commit67e50ef4b6714bc1f79e639d031a22a4a4b0ec8b (patch)
tree032c62fc0d3da59c9717d003264fa7546c344e6f /Software/Visual_Studio/MachineStudio
parenta78e489a56f09eb6a0a3ffa557e602ee8c7e67a2 (diff)
downloadTango-67e50ef4b6714bc1f79e639d031a22a4a4b0ec8b.tar.gz
Tango-67e50ef4b6714bc1f79e639d031a22a4a4b0ec8b.zip
Fixed issue with dryer buffer length on eureka.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio')
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication/DefaultStudioApplicationManager.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication/DefaultStudioApplicationManager.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication/DefaultStudioApplicationManager.cs
index feed9e193..78230b8a0 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication/DefaultStudioApplicationManager.cs
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/StudioApplication/DefaultStudioApplicationManager.cs
@@ -395,6 +395,9 @@ namespace Tango.MachineStudio.UI.StudioApplication
throw new NullReferenceException($"The specified machine '{connectedMachine.SerialNumber}' could not be found on the database.");
}
+ //Adjust Dryer Buffer Length Mode
+ ProcessParametersTable.DryerBufferMode = Machine.Type;
+
connectedMachine.SetMachine(Machine);
ConnectedMachine = connectedMachine;
var settings = SettingsManager.Default.GetOrCreate<MachineStudioSettings>();