diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-01-08 16:19:50 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-01-08 16:19:50 +0200 |
| commit | 68be90b29a5ea3776481ee8e2fde33083c11c670 (patch) | |
| tree | b12900aae40c50df19c67be1a5cba630ad13e334 /Software/Visual_Studio/PPC/Modules/Tango.PPC.Storage/ViewModels | |
| parent | 65e6368cbe7eeddd02bbd43ae5159ab4b762165f (diff) | |
| download | Tango-68be90b29a5ea3776481ee8e2fde33083c11c670.tar.gz Tango-68be90b29a5ea3776481ee8e2fde33083c11c670.zip | |
Implemented PPC events history.
Fixed PPC storage inserted navigation.
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.Storage/ViewModels')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.Storage/ViewModels/MainViewVM.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Storage/ViewModels/MainViewVM.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Storage/ViewModels/MainViewVM.cs index 688f82fe7..06cd0661d 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.Storage/ViewModels/MainViewVM.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.Storage/ViewModels/MainViewVM.cs @@ -117,9 +117,9 @@ namespace Tango.PPC.Storage.ViewModels { InvokeUI(async () => { - if (await NotificationProvider.ShowQuestion("Disk Inserted. Do you want to browse?")) + if (await NotificationProvider.ShowQuestion("Storage device inserted. Do you want to browse?")) { - await NavigationManager.NavigateTo(Common.Navigation.NavigationView.StorageView); + await NavigationManager.NavigateTo<StorageModule>(); } }); } |
