diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-05-16 14:41:15 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-05-16 14:41:15 +0300 |
| commit | 1b4bd3fa7b135d5a5d0ebee41ae3d99ba0a8fbf0 (patch) | |
| tree | be0b449d3e5230a198330625db6361cd22f50fba /Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobViewVM.cs | |
| parent | 8b7a4f49dddb3ff8d57f33c43413c9dc96de7c0e (diff) | |
| download | Tango-1b4bd3fa7b135d5a5d0ebee41ae3d99ba0a8fbf0.tar.gz Tango-1b4bd3fa7b135d5a5d0ebee41ae3d99ba0a8fbf0.zip | |
Some fixes on android 9 PIE.
PPC improvements.
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.cs | 4 |
1 files changed, 3 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 1e18fb14c..d1c5a8536 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 @@ -409,6 +409,8 @@ namespace Tango.PPC.Jobs.ViewModels { if (!(_job_to_load == null || (_job_to_load != null && Job != null && _job_to_load.Guid == Job.Guid))) { + View.ScrollToTop(); + LogManager.Log($"Loading selected job '{_job_to_load.Name}'..."); //NotificationProvider.SetGlobalBusyMessage("Loading job details..."); @@ -496,7 +498,7 @@ namespace Tango.PPC.Jobs.ViewModels } finally { - InvokeUIOnIdle(() => + InvokeUI(() => { IsFree = true; //NotificationProvider.ReleaseGlobalBusyMessage(); |
