diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-05-19 12:37:00 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-05-19 12:37:00 +0300 |
| commit | 2433051636406054c69b6de42806aab50e076e01 (patch) | |
| tree | 12dd78e2e5f82f4355035bc64c16a08e3be7434b /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs | |
| parent | 1d2d515c91a78a8a3e373e05ae925ba6af1f32fd (diff) | |
| download | Tango-2433051636406054c69b6de42806aab50e076e01.tar.gz Tango-2433051636406054c69b6de42806aab50e076e01.zip | |
2. Update PPC DB Schema and Liquid Types. ***
3. Test preferred index on PPC. ***
3.1. Add Has_Pigment to Liquid Type. ***
4. Add "Use Preferred Index to Machine Studio. ***
4. Enable KeepAlive by default. ***
4. Disable upload HW for TCP by default. ***
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs index 2099b12d9..3d0ee2461 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/DeveloperModuleSettings.cs @@ -34,6 +34,16 @@ namespace Tango.MachineStudio.Developer /// </summary> public int GradientResolutionCM { get; set; } + private bool _usePreferredLiquidVolumeIndex; + /// <summary> + /// Gets or sets a value indicating whether to use the preferred liquid volume index. + /// </summary> + public bool UsePreferredLiquidVolumeIndex + { + get { return _usePreferredLiquidVolumeIndex; } + set { _usePreferredLiquidVolumeIndex = value; RaisePropertyChangedAuto(); } + } + public DeveloperModuleSettings() { ProcessParametersIndices = new List<ParameterIndex>(); |
