diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-03-20 13:13:52 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-03-20 13:13:52 +0200 |
| commit | 88ac356fd2d30e016bb884697e7b67f8ede51d2b (patch) | |
| tree | 37566213026964e30229c21474f1bd148fe8e695 /Software/Visual_Studio/MachineStudio/Modules | |
| parent | 5881b11e25a34acc0230f5316db5783389afe18f (diff) | |
| download | Tango-88ac356fd2d30e016bb884697e7b67f8ede51d2b.tar.gz Tango-88ac356fd2d30e016bb884697e7b67f8ede51d2b.zip | |
Fixed issue with PPC "add job" button hiding the "delete job" button.
Removed message box on error in color lab module.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ColorLab/ViewModels/MainViewVM.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ColorLab/ViewModels/MainViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ColorLab/ViewModels/MainViewVM.cs index 97af89253..f01637b5b 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ColorLab/ViewModels/MainViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ColorLab/ViewModels/MainViewVM.cs @@ -410,12 +410,12 @@ namespace Tango.MachineStudio.ColorLab.ViewModels } catch (Exception ex) { - LogManager.Log(ex, "Error in color conversion."); + LogManager.Log(ex, "An error occurred while trying to convert from source color to Volume."); - InvokeUI(() => - { - _notification.ShowError($"An error occurred while trying to convert from source color to Volume.\n" + ex.Message); - }); + //InvokeUI(() => + //{ + // _notification.ShowError($"An error occurred while trying to convert from source color to Volume.\n" + ex.Message); + //}); } }); } |
