aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-01-07 13:33:24 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-01-07 13:33:24 +0200
commit6ed849ee54a2f30315a622242f38dce92a309991 (patch)
treed355caf909d287adcdd89c5afe6b1f1bdd2ba748 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs
parent8d2dc68fdddc51bc24ac6f41feb97460a7d27372 (diff)
downloadTango-6ed849ee54a2f30315a622242f38dce92a309991.tar.gz
Tango-6ed849ee54a2f30315a622242f38dce92a309991.zip
Added Application Firmware Versions To Machine Designer.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs
index f38c8f8d6..44ce75c12 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MainView.xaml.cs
@@ -122,6 +122,10 @@ namespace Tango.MachineStudio.MachineDesigner.Views
{
_vm.DropApplicationOsVersion(e.Draggable.DataContext as ApplicationOsVersion);
}
+ else if (e.Draggable.DataContext is ApplicationFirmwareVersion)
+ {
+ _vm.DropApplicationFirmwareVersion(e.Draggable.DataContext as ApplicationFirmwareVersion);
+ }
}
private void OnEmbeddedDrop(object sender, DropEventArgs e)