diff options
| author | Roy <Roy.mail.net@gmail.com> | 2023-02-19 00:13:53 +0200 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2023-02-19 00:13:53 +0200 |
| commit | a054f1ab36fe3cbe816f78fa5ea68b30cde1bd43 (patch) | |
| tree | 2cdcfb86f298ba32e28b4f29c9b31d1faa05d5da /Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs | |
| parent | a4cd972fd023425fa9414e56748665cb2821f412 (diff) | |
| download | Tango-a054f1ab36fe3cbe816f78fa5ea68b30cde1bd43.tar.gz Tango-a054f1ab36fe3cbe816f78fa5ea68b30cde1bd43.zip | |
FSE Eureka Design Support.
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs')
| -rw-r--r-- | Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs b/Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs index ffc0e8e60..745211705 100644 --- a/Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs +++ b/Software/Visual_Studio/FSE/Tango.FSE.UI/Connection/DefaultMachineProvider.cs @@ -200,11 +200,11 @@ namespace Tango.FSE.UI.Connection if (machine.GetType() == typeof(ExternalBridgeUsbClient)) { - vm = await NotificationProvider.ShowDialog<MachineConnectionUsbViewVM>(); + vm = await NotificationProvider.ShowDialog(new MachineConnectionUsbViewVM() { Machine = machine }); } else if (machine.GetType() == typeof(EmulatorExternalBridge)) { - vm = await NotificationProvider.ShowDialog<MachineConnectionEmulatorViewVM>(); + vm = await NotificationProvider.ShowDialog(new MachineConnectionEmulatorViewVM() { Machine = machine }); } else if (machine is ExternalBridgeTcpClient) { |
