From b84ea5c89946d6e21ffa72f913cab3bec5f1d5c6 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Wed, 7 Feb 2018 16:23:25 +0200 Subject: Filter available graphs by IO Type. --- .../Modules/Tango.MachineStudio.Developer/Views/MainView.xaml | 4 ++-- .../Modules/Tango.MachineStudio.Developer/Views/MainView.xaml.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views') diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml index f92f96160..cdfef3b0d 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Views/MainView.xaml @@ -1789,7 +1789,7 @@ AVAILABLE GRAPHS - + @@ -1815,7 +1815,7 @@ - + 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 9a0a4dc0e..e9111c86c 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 @@ -104,11 +104,11 @@ namespace Tango.MachineStudio.Developer.Views } } - private void OnDropAvailableSensor(object sender, DropEventArgs e) + private void OnDropAvailableGraph(object sender, DropEventArgs e) { if (e.Draggable.DataContext is Io) { - _vm.OnDropAvailableSensor(e.Draggable.DataContext as Io); + _vm.OnDropAvailableGraph(e.Draggable.DataContext as Io); } } -- cgit v1.3.1