aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-05-14 14:56:21 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-05-14 14:56:21 +0300
commit33b7badb8903408d72c3ec42d3198c5e4cef8fc1 (patch)
tree937e1afe13b0f7e0e43117fbe5a13533fb3ec75e /Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs
parent9aca4b69b22a08d01b12e358eb198f3fbe92ff2a (diff)
downloadTango-33b7badb8903408d72c3ec42d3198c5e4cef8fc1.tar.gz
Tango-33b7badb8903408d72c3ec42d3198c5e4cef8fc1.zip
TCC mobile design improvement.
Added keep alive work around for job parsing. New catalog handling per RML on PPC.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs')
-rw-r--r--Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs
index e2c29cac5..edcc741e6 100644
--- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs
+++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs
@@ -865,7 +865,11 @@ namespace Tango.PPC.Jobs.ViewModels
/// <param name="stop">The stop.</param>
private async void OpenTwineCatalog(BrushStop stop)
{
- var catalogItem = await NavigationManager.NavigateForResult<JobsModule, TwineCatalogView, CatalogItem, BrushStop>(stop, true);
+ var catalogItem = await NavigationManager.NavigateForResult<JobsModule, TwineCatalogView, CatalogItem, TwineCatalogNavigationObject>(new TwineCatalogNavigationObject()
+ {
+ BrushStop = stop,
+ RML = Job.Rml,
+ }, true);
if (catalogItem != null)
{