diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-07 16:18:30 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-02-07 16:18:30 +0200 |
| commit | d27a0bac82a94b9f7cc380b03cc4c73012aaacd7 (patch) | |
| tree | d60d43c48d9e8d151c3b85d00c7cdb7aea7ffb87 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs | |
| parent | bd63d7d2f7769e5534fb9a58d97358564c2cb674 (diff) | |
| download | Tango-d27a0bac82a94b9f7cc380b03cc4c73012aaacd7.tar.gz Tango-d27a0bac82a94b9f7cc380b03cc4c73012aaacd7.zip | |
Changes Sensors Table to IOS.
Added IO TYPE field for IOS Table.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs index 1df4728d3..9a0a4dc0e 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs @@ -106,9 +106,9 @@ namespace Tango.MachineStudio.Developer.Views private void OnDropAvailableSensor(object sender, DropEventArgs e) { - if (e.Draggable.DataContext is Sensor) + if (e.Draggable.DataContext is Io) { - _vm.OnDropAvailableSensor(e.Draggable.DataContext as Sensor); + _vm.OnDropAvailableSensor(e.Draggable.DataContext as Io); } } |
