diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2020-09-17 16:39:49 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2020-09-17 16:39:49 +0300 |
| commit | 281697486a356ee0f6342be1f75f4066054229d2 (patch) | |
| tree | 4bf01f3772f8e2a3b5c39c251254bdccd09aa42f /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer | |
| parent | f3c163e96a9fd733922ce56e37025e2dff0d47e6 (diff) | |
| parent | 2e3f778e10b19f04dac2fa8865efea0bbdbb59d5 (diff) | |
| download | Tango-281697486a356ee0f6342be1f75f4066054229d2.tar.gz Tango-281697486a356ee0f6342be1f75f4066054229d2.zip | |
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs index 40710ea21..8f02749da 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs @@ -1673,7 +1673,17 @@ namespace Tango.MachineStudio.Developer.ViewModels { await Task.Factory.StartNew(() => { - InvalidateLiquidFactorsAndProcessTables(); + try + { + IsFree = false; + InvalidateLiquidFactorsAndProcessTables(); + } + catch + {} + finally + { + IsFree = true; + } }); } } |
