diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-03-30 19:41:54 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-03-30 19:41:54 +0300 |
| commit | 3dcf3242705a7522617d4b5f7ca4d9b918e48ca5 (patch) | |
| tree | 29e6083fbe1f9778e14e9641bffcb7d4765e8b39 /Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs | |
| parent | c61d12100372054de07f6201c27c7755c7be35e8 (diff) | |
| download | Tango-3dcf3242705a7522617d4b5f7ca4d9b918e48ca5.tar.gz Tango-3dcf3242705a7522617d4b5f7ca4d9b918e48ca5.zip | |
Eureka PPC. GoToJob, Notifications, LengthWothSpool.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs index 14b9b76e3..7caabf6a1 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MachineUpdateViewVM.cs @@ -566,7 +566,11 @@ namespace Tango.PPC.UI.ViewModels { _updateNotificationItem = null; }; - NotificationProvider.PushNotification(_updateNotificationItem); + + if (!BuildProvider.IsEureka) + { + NotificationProvider.PushNotification(_updateNotificationItem); + } }); } } |
