aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-11-25 00:08:01 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-11-25 00:08:01 +0200
commit9947803e9b41d32ca60e4f9d8d6ff67a7aa80624 (patch)
treeedd6d6008c21406bc0898331dfd27cc56373d1a4 /Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs
parent15d77316df0b3644bec39b26c59be623ee6f2794 (diff)
downloadTango-9947803e9b41d32ca60e4f9d8d6ff67a7aa80624.tar.gz
Tango-9947803e9b41d32ca60e4f9d8d6ff67a7aa80624.zip
Fixed PPC notifications priority.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/MainViewVM.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/MainViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/MainViewVM.cs
index f3c7f5acc..fc178dea8 100644
--- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/MainViewVM.cs
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/MainViewVM.cs
@@ -90,7 +90,7 @@ namespace Tango.PPC.Jobs.ViewModels
{
NavigationManager.NavigateWithObject<JobsModule, JobView, Job>(e.Job);
NavigationManager.ClearHistoryExcept<JobsView>();
- }, NotificationItem.NotificationPriority.Critical));
+ }, NotificationItem.NotificationPriority.VeryHigh));
}
/// <summary>
@@ -124,7 +124,7 @@ namespace Tango.PPC.Jobs.ViewModels
{
NavigationManager.NavigateWithObject<JobsModule, JobView, JobNavigationObject>(new JobNavigationObject() { Job = e.Job });
NavigationManager.ClearHistoryExcept<JobsView>();
- }));
+ }, NotificationItem.NotificationPriority.VeryHigh));
}
}